Displaying 1 result from an estimated 1 matches for "update_notes".
Did you mean:
update_node
2006 Aug 15
4
observe_form not serializing form
...<%= text_area :contact, :notes, :cols => 40, :rows => 10,
:id =>''notes_text_area'' %>
<%= observe_form(''notes_form'',
:frequency => 1,
:url => {:action => ''update_notes'',
:contact_id => @contact.contact_id}) %>
</form>
For some reason, the contents of the text area are not being sent in the
post. In fact it doesn''t appear that the form is being serialized at
all. What am I doing wrong?...