Hi,
I have a problem with the form select. In the value field I have the
generated html…
<%= f.select :brand_id,
options_for_select([[‘Brands’, 0]] +
@search_brands.map { |b| [b.name, b.id]}),
{:id => ‘cbxBrand’, :tabindex => (@tabindex += 1)} %>
This is the html:
Am i forgetting a parameter or something?
Greg