aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/form_helpers.md
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #30474 from yhirano55/make_it_same_title_in_index_and_pageEileen M. Uchitelle2017-12-131-2/+2
|\ | | | | Make it same title in index and page [ci skip]
| * Make it same title in index and page [ci skip]Yoshiyuki Hirano2017-08-311-2/+2
| |
* | [ci skip] Add a missing space before closing curly braceswillnet2017-12-021-1/+1
| |
* | Update Form Helpers guide to fix example codes [ci skip]Yoshiyuki Hirano2017-09-171-7/+11
|/ | | | | | | | * It looks that example codes are not based on actual output. So I've fixed it. * Specifically: * There are no lines about utf-8 and authenticity_token. * The submit button doesn't have data-disabled-with attribute. * Each attribute order of html element is different from actual ones.
* Merge pull request #28432 from marksiemers/masterRafael França2017-04-201-1/+1
|\ | | | | Update 'Building Complex Forms' with `inverse_of`
| * Update 'Building Complex Forms' with `inverse_of`marksiemers2017-03-151-1/+1
| | | | | | If the example for complex forms is implemented, ActiveRecord will prevent saving unless `inverse_of: :person` is added to the `has_many :addresses` association.
* | Remove datetime fields from helper list [ci skip]yuuji.yaginuma2017-04-191-1/+1
|/ | | | | | The `datetime_field` is an alias of the `datetime_local_field`, there is no helper to generate datetime fields. Ref: #25469
* Add link to mentioned API [ci skip] (#28392)Vipul A M2017-03-121-1/+1
|
* Fixes #27202, [ci skip]utilum2016-11-301-2/+0
|
* remove deprecated `datetime_field` from guide [ci skip]yuuji.yaginuma2016-04-031-2/+0
| | | | `datetime_field` was deprecated in 316811b4d3f4e5a1a7bcd03de97c67218770e333
* [ci skip] No hyphen in 'side effects'Michael Groeneman2016-02-231-1/+1
|
* [ci skip] Fix typo in Form Helpers GuideMichael Groeneman2016-02-231-1/+1
|
* ApplicationRecord documentation passGenadi Samokovarov2015-12-171-4/+4
| | | | | | | This is a pass over the documentation which fills the missing gaps of `ApplicationRecord`. [ci skip]
* Add comma to to make the information clearUbuntu2015-11-071-1/+1
|
* Minor cleanup for form helpers guide [ci skip]Scott González2015-10-081-6/+8
|
* Remove TIP on parse_queryDavid Verhasselt2015-10-051-7/+0
| | | | [ci skip]
* Remove yepnope mention from form helpers guide because it's deprecated [ci skip]Anton Chuchkalov2015-07-301-3/+2
|
* [ci skip] Upcase `when`yui-knk2015-05-161-1/+1
|
* [ci skip] Fix to a singular form (person has one contact_detail)yui-knk2015-05-161-2/+2
|
* Merge branch 'master' of github.com:rails/docrailsVijay Dev2015-03-261-1/+1
|\ | | | | | | | | Conflicts: guides/source/4_0_release_notes.md
| * [ci skip] Fix link formatyui-knk2015-03-151-1/+1
| |
* | [ci skip] Add link for "parameter_names section"yui-knk2015-03-231-1/+1
|/
* [ci skip] Fix fenced code block langyui-knk2015-03-011-1/+1
|
* Improving 'Customizing Form Builder' section with example [ci skip]Andrey Nering2015-01-161-1/+8
|
* Merge pull request #18503 from vipulnsward/guides-in-onXavier Noria2015-01-141-1/+1
|\ | | | | Changed `IN` to `ON` in markdown renderer condition
| * - Changed `IN` to `ON` in markdown renderer conditionVipul A M2015-01-141-1/+1
| | | | | | | | - Changed `IN` to `ON` in all note sentences in guides.
* | Fix form_for guide binding a form to an object.Derek Reeve2015-01-131-2/+2
|/ | | | | | | The HTML generated using url: { action: :create} will not generate the form action "/articles/create", it should generate the form action "/articles" for a new object.
* warn about reading guides in GitHubXavier Noria2014-12-231-0/+2
| | | | References #18148.
* Merge pull request #17796 from leafac/fix-formatYves Senn2014-11-271-1/+9
|\ | | | | | | Fix format "Form Helpers" guide
| * Fix format "Form Helpers" guideLeandro Facchinetti2014-11-261-1/+1
| | | | | | | | The `"_tag"` was interpreted as the start of a italics.
* | [ci skip] Add highlight to code (form helper guide).Juanito Fatas2014-10-251-1/+1
| |
* | form_helpers: demonstrating there is also a collection_select method in form ↵Thiago Pinto2014-09-131-0/+6
|/ | | | builder
* Merge branch 'master' of github.com:rails/docrailsVijay Dev2014-09-031-1/+1
|\
| * code quotes for classnameMikhail Dieterle2014-08-241-1/+1
| |
* | Adjusted punctuation and grammar for Form Helpers guide [ci skip]Brian Jordan2014-08-261-16/+16
|/
* Fix indentation from 1b4b26f [ci skip]Zachary Scott2014-05-281-3/+3
|
* [ci skip] Improve form_helpers.md guide.Juanito Fatas2014-05-291-31/+25
|
* Merge pull request #14872 from jonatack/patch-7Vijay Dev2014-04-271-6/+11
|\ | | | | Grammar and formatting fixes in Form Helpers Guide
| * Grammar and formatting fixes in Form Helpers GuideJon Atack2014-04-251-6/+11
| | | | | | | | | | Improved version of #14851 after helpful feedback from @robin850 and @matthewd. [skip ci]
* | Fix code & grammar in Form Helpers GuideJon Atack2014-04-251-5/+5
|/ | | in the "Forms to External Resources" section [skip ci]
* [ci skip] builtin -> built-inAkshay Vishnoi2014-04-201-1/+1
|
* Updating select helper doc [ci skip]Rashmi Yadav2014-03-081-0/+10
|
* Fix fields_for documentation with index option [ci skip]Prathamesh Sonpatki2014-01-141-3/+10
| | | | | | | - fields_for documentation with index option was wrong. - It does not work with passing model as it is. - Changed the example by passing id of the address object. - Fixes #13125.
* Improved documents [ci skip]Kuldeep Aggarwal2013-12-141-1/+1
|
* Some improvements on building nested forms. [ci skip]Juanito Fatas2013-12-071-7/+11
|
* Add number and range field to form helpers articleJuanito Fatas2013-12-021-2/+16
| | | | | | Also wrap surrounding text to 80 chars. [ci skip] Closes #13132
* [ci skip] Consistency wording of 9.6 in form_helpers.mdJuanito Fatas2013-09-151-1/+1
| | | | | | Chapter 9 is giving a user and set of addresses example. So 'Add a new address' would be more consistent. Also change the javascript to JavaScript.
* Merge branch 'master' of github.com:rails/docrailsVijay Dev2013-09-131-1/+1
|\
| * html generated for a search formSergio2013-09-091-1/+1
| | | | | | There's a div that is generated in rails for a default search form and is not includen in the example.
* | Use Ruby on Rails Coding Conventions for code examples in the guidesPaul Nikitochkin2013-09-061-3/+3
|/ | | | | | | | * Indent after private/protected * Ruby >= 1.9 syntax for hashes * Prefer method { do_stuff } instead of method{do_stuff} for single-line blocks. [ci skip]