Dan Apostol
2006-Mar-23 10:04 UTC
[Rails] Newbie - populating select list from db - BUMP :)
Hi! in the same problem with a select with some values from db: the following select in test.rhtml: <%= select(:listSetting, :code, @listSettings) %> where @listSettings = ListSetting.find(:all, :order => "code").map {|u| [u.code, u.id] } i have an observer_field defined in test.rhml as below: <%= observe_field("listSetting_code", :update => "values_span", :url => {:action => :listSetting_code} ) %> which will observe the select object and run the code from ListSetting_code method from controller. the log after changing the select is as below: Processing ListAdminController#listSetting_code (for 127.0.0.1 at 2006-03-22 14:39:17) [POST] Parameters: {"action"=>"listSetting_code", "value"=>"listSetting_code", "1"=>"", "controller"=>"list_admin"} 2 short n00b questions: 1. what it means "1"=>"" in the log file? 2. how do I get the value of option selected in controller method? TIA. Dan -------------- next part -------------- An embedded message was scrubbed... From: Dan Apostol <combat2k@gmail.com> Subject: Re: [Rails] Re: Newbie - populating select list from db Date: Wed, 22 Mar 2006 14:44:46 +0100 Size: 2177 Url: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060323/87b9a784/Newbie-populatingselectlistfromdb.mht