Displaying 1 result from an estimated 1 matches for "dashboard_job_update".
2005 Dec 22
3
NewbieQ : undefined method `stringify_keys!'' Dumb Question
...%>
<%= text_area_tag "note", nil, :size => "65x10" %>
<%=submit_tag ''Add Note'', :note => @job.note %>
<%= end_form_tag %>
Which exists on a page containing another partial with job data.
In the controller there is ;
def dashboard_job_update
@job = Job.find(params[:id])
@note = Note.new(params[:note]) <---this is line 99
@job.notes << @note
if @job.update_attributes(params[:job]).......
The submitted params are;
Request
Parameters: {"commit"=>"Add Note", "id"=>"1",...