aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/form_helper.rb
Commit message (Collapse)AuthorAgeFilesLines
* Missed a few instances of British English spelling in the last commitOemuer Oezkir2011-07-241-1/+1
| | | | oh and obviously I meant according to Webster, not Weber
* Changed a few instances of of words in the API docs written in British ↵Oemuer Oezkir2011-07-241-2/+2
| | | | | | English to American English(according to Weber)
* little details seen while doing a pass through what's new in docrailsXavier Noria2011-07-231-6/+6
|
* Update form helper documentation to match code.Paul Battley2011-07-191-2/+2
| | | | Change d3cfee11 removed the automatically generated object_name_submit id attributes on form submit elements. This makes the documentation match.
* minor corrections in form helpers guide and api docsVijay Dev2011-07-201-2/+2
|
* examples for telephone_field, url_field and email_fieldRay Baxter2011-07-171-0/+12
|
* document options to search_fieldRay Baxter2011-07-171-1/+22
|
* use correct in descriptionRay Baxter2011-07-171-1/+1
|
* Don't require ActionView::Context as it's autoloadedAndrew White2011-07-011-1/+0
|
* Add missing requires for ActionView::Context and Module#instance_method_namesAndrew White2011-07-011-0/+2
|
* Revert "Add method fields_for_with_index to FormHelper"José Valim2011-07-011-18/+6
| | | | | | | | This reverts commit 7c562d5e460d97b18e4f3367b3cfb13401732920. Conflicts: actionpack/lib/action_view/helpers/form_helper.rb
* Fixed ActionView::FormOptionsHelper#select with :multiple => falseBogdan Gusiev2011-06-301-1/+1
|
* Test for extractable_options? within nested fields_for.Sam Pohlenz2011-06-201-1/+1
| | | | | This fixes an error when a record object that is a subclass of Hash is passed to fields_for, which is incorrectly interpreted as field options.
* Typo.R.T. Lechow2011-06-161-2/+2
|
* form => form_forVijay Dev2011-06-151-1/+1
|
* Clarify importance of *_attributes= writer methods for nested fieldsChristine Yen2011-06-151-8/+12
|
* The example in the API docs incorrectly indicated that form_for would use ↵Mark Roghelia2011-05-311-2/+2
| | | | the same default route for both new and previously persisted records. The default path given in the example would have generated a routing error for new records. form_for actually uses polymorphic_path to determine which route to use based on the state of the record. The example has been updated to reflect the method's actual behavior.
* Edited actionpack/lib/action_view/helpers/form_helper.rb via GitHubJosé Valim2011-05-221-0/+1
|
* Add method fields_for_with_index to FormHelperJorge Bejar2011-05-211-0/+19
|
* Use record_name to make fields for methods more consistentCarlos Antonio da Silva2011-05-141-6/+6
|
* Refactor fields_for to make the api more clear, and fix usage with non ↵Carlos Antonio da Silva2011-05-141-26/+19
| | | | nested attributes and without object
* Cleanup instantiate builder method definitionCarlos Antonio da Silva2011-05-141-5/+2
|
* Remove dependency from _template.José Valim2011-05-011-1/+1
|
* Start abstracting the renderer.José Valim2011-05-011-0/+5
|
* Allow a label with the value option to have value-specific translations.Jason Garber2011-04-271-1/+2
|
* attribute should be attributesJosé Valim2011-04-141-1/+1
|
* Edited actionpack/lib/action_view/helpers/form_helper.rb via GitHubJosé Valim2011-04-141-2/+3
|
* Allow FormHelper#form_for to specify the :method as a direct option instead ↵David Heinemeier Hansson2011-03-261-2/+13
| | | | of through the :html hash [DHH]
* fix typosAkira Matsuda2011-03-071-2/+2
|
* Allow model to be inherited from Hash [#6487 state:resolved]Alexander Uvarov2011-03-061-3/+4
| | | | Signed-off-by: Andrew White <andyw@pixeltrix.co.uk>
* Add an option to FormBuilder to omit hidden field with idAlexander Uvarov2011-03-041-2/+22
| | | | | | [#4551 state:committed] Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
* fields_for with inline blocks and nested attributes already persisted does ↵Santiago Pastorino2011-02-081-10/+7
| | | | | | not render properly [#6381 state:committed]
* put authenticity_token option in parity w/ remoteDan Pickett2011-02-061-4/+5
| | | | | | [#6228 state:committed] Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
* Added tests for form_for and an authenticity_token option. Added docs for ↵Timothy N. Tsvetkov2011-02-051-0/+18
| | | | | | | | for_for and authenticity_token option. Added section to form helpers guide about forms for external resources and new authenticity_token option for form_tag and form_for helpers. [#6228 state:committed] Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
* removing generation of id in submit helperFranco Brusatti2011-02-031-1/+1
| | | | | | [#6369 state:committed] Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
* Remove InstanceTagMethods module and define the methods inside the ↵Santiago Pastorino2011-01-091-7/+2
| | | | InstanceTag class
* Remove nodoc from FormBuilder because the methods inside are public API methodsRyan Bigg2010-12-131-1/+1
|
* class inheritable attributes is used no more! all internal use of class ↵Josh Kalderimis2010-11-201-2/+2
| | | | | | inheritable has been changed to class_attribute. class inheritable attributes has been deprecated. Signed-off-by: José Valim <jose.valim@gmail.com>
* Revert "Remove deprecated form_for with strings or symbols"José Valim2010-11-181-3/+9
| | | | | | | | | | | | | | | | This code was not deprecated. What was deprecated is the following: form_for(:foo, @foo) Which now should be rewritten as: form_for(@foo, :as => :foo) The following format is valid: form_for(:foo) This reverts commit be797750e6ce866ea08307f63bf35304a965c8d4.
* Remove deprecated form_for with strings or symbolsLeonardo Capillera2010-11-181-9/+3
| | | | Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
* Add f.submit to forms just to show the most common use caseSantiago Pastorino2010-11-141-0/+12
|
* Merge branch 'spastorino-master'Santiago Pastorino2010-11-141-2/+2
|\
| * This doesn't make sense hereSantiago Pastorino2010-11-141-2/+2
| |
* | Add empty line between previous method and RDoc of submit to allow RDoc ↵Santiago Pastorino2010-11-141-0/+1
|/ | | | appear on api.rubyonrails.org
* fields_for should treat ActiveRecord::Relation as an arrayNeeraj Singh2010-11-111-2/+2
| | | | | | [#5795 state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>
* Just initialize options with an empty hashSantiago Pastorino2010-11-031-2/+1
|
* Call html_escape in ERB::Util module and don't mix it in in the helpersSantiago Pastorino2010-10-181-2/+3
|
* Revert "Make InstanceTagMethods#value_before_type_cast raise if the model ↵Santiago Pastorino2010-10-101-8/+3
| | | | | | | | don't respond to attr_before_type_cast or attr method" And "Makes form_helper use overriden model accessors" This reverts commit 3ba8e3100548f10fce0c9784981a4589531476dd and fb0bd8c1092db51888ec4bb72af6c595e13c31fa.
* Fixing search_field to remove object attribute from options hash [#5730 ↵Aditya Sanghi2010-10-021-1/+1
| | | | | | state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>
* tag value can be false, so nil? check is necessaryAaron Patterson2010-09-291-1/+1
|