search for: company_role_select

Displaying 1 result from an estimated 1 matches for "company_role_select".

2008 Jul 08
2
select helper still the worth thing in rails...
...trying all the day to make it happen, initial display is fine , but I cannot redisplay the selected value once the choice is done in my select helper I setup my slector in a helper (need to include the first option ''all'', as a prompt is displayed only once.... in my partial def company_role_selection(selection=nil) roles= [[''all'', 0]] roles += company_roles.collect {|h| [ h.name, company_roles.index(h)]}.compact.uniq select(''role'', ''id'', roles, {:selected => selection} ,{:onchange => "$(''select_role'&...