aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/form_helper.rb
Commit message (Expand)AuthorAgeFilesLines
* finish form_for change, allow hash as the second param: form_for :post, :url ...Rick Olson2006-03-261-3/+6
* Change #form_for and #fields_for so that the second argument is not required ...Rick Olson2006-03-261-2/+2
* Fixed form_for regression (closes #3962) [t.lucas@toolmantim.com]David Heinemeier Hansson2006-02-261-1/+1
* Fixed that form elements would strip the trailing [] from the first parameter...David Heinemeier Hansson2006-02-261-1/+1
* Fix form_for brokenness due to a shortage of parenthesisNicholas Seckar2006-02-121-1/+1
* Expose object and object_name from the FormBuilder [DHH]David Heinemeier Hansson2006-02-121-2/+4
* Clean up style around form_for and friends a bitDavid Heinemeier Hansson2006-02-121-6/+5
* Remove over-engineered form_for code for a leaner implementation.Nicholas Seckar2006-02-111-26/+13
* Add :html option for specifying form tag options in form_forSam Stephenson2006-02-081-2/+2
* Don't interpret the :value option on text_area as an html attribute. Set the ...Marcel Molina2006-02-081-1/+1
* Fix remote_form_for creates a non-ajax form. Closes #3741.Nicholas Seckar2006-02-061-3/+7
* Add :builder => option to form_for and friends. Closes 3268.Nicholas Seckar2006-02-041-13/+47
* Documentation typo fix. Closes #2367.Marcel Molina2006-01-131-1/+1
* Have the form builder output radio button, not check box, when calling the ra...Marcel Molina2006-01-061-1/+1
* Documentation fixesNicholas Seckar2005-12-191-1/+1
* Change form_for and fields_for method signatures to take object name and obje...Marcel Molina2005-12-021-23/+10
* FormHelper correctly passes its object through select, collection_select, cou...Jeremy Kemper2005-11-221-1/+3
* hidden_field can also be in fields_forDavid Heinemeier Hansson2005-11-131-1/+1
* Make form_for work with additional optionsDavid Heinemeier Hansson2005-11-131-1/+1
* Added FormHelper#form_for and FormHelper#fields_for that makes it easier to w...David Heinemeier Hansson2005-11-131-16/+114
* Ensure radio_button works as expected with values other than strings.Michael Koziarski2005-10-141-1/+1
* Misc doc fixes (typos/grammar/etc). Closes #2445.Marcel Molina2005-10-121-3/+3
* Added in-place editing support in the spirit of auto complete with ActionCont...David Heinemeier Hansson2005-09-111-1/+5
* Fix docs #2136 [coffee2code]David Heinemeier Hansson2005-09-091-5/+5
* Removed the default option of wrap=virtual on FormHelper#text_area to ensure ...David Heinemeier Hansson2005-07-021-1/+1
* Fixed radio_button to work with numeric values #1352 [demetrius]David Heinemeier Hansson2005-06-161-1/+1
* Fixed that FormHelper#checkbox should return a checked checkbox if the value ...David Heinemeier Hansson2005-05-191-0/+2
* Fixed missing id uniqueness in FormTag#radio_button #1207 [Jarkko]David Heinemeier Hansson2005-04-301-0/+4
* Fixed FormTagHelper#check_box to respect checked #1049 [DelynnB]David Heinemeier Hansson2005-04-171-1/+1
* Fixed that radio buttons shouldn't have a default size attribute #1074 [hendr...David Heinemeier Hansson2005-04-101-3/+4
* Made it possible to do text_field :account, :name in addition to text_field "...David Heinemeier Hansson2005-04-041-1/+1
* Fixed form helpers to query Model#id_before_type_cast instead of Model#id as ...David Heinemeier Hansson2005-03-201-1/+1
* Updated docs on auto-indexing #765 [Astinus]David Heinemeier Hansson2005-03-061-0/+8
* Fixed that form helpers would treat string and symbol keys differently in htm...David Heinemeier Hansson2005-03-061-54/+74
* Show value when NOT fileDavid Heinemeier Hansson2005-02-231-1/+1
* Added FormHelper#file_field and FormTagHelper#file_field_tag for creating fil...David Heinemeier Hansson2005-02-231-1/+6
* Applied the dblack patchDavid Heinemeier Hansson2005-01-241-0/+6
* Added that form helpers now take an index option #448 [Tim Bates]David Heinemeier Hansson2005-01-101-2/+25
* FormHelper should only use *_before_type_cast if they available on the modelDavid Heinemeier Hansson2004-12-191-1/+5
* Added respondence to *_before_type_cast for all attributes to return their st...David Heinemeier Hansson2004-12-191-5/+9
* Updated documentationDavid Heinemeier Hansson2004-12-161-2/+4
* Added FormHelper#radio_button to work with radio buttons like its already pos...David Heinemeier Hansson2004-12-141-0/+23
* Fixed to_input_field_tag so it no longer explicitly uses InstanceTag.value if...David Heinemeier Hansson2004-12-081-2/+4
* InitialDavid Heinemeier Hansson2004-11-241-0/+182