Displaying 1 result from an estimated 1 matches for "cliente_id".
Did you mean:
client_id
2006 Jul 11
9
problems with observe_field
Hi all, I''m having problems with an observe_field, this is the view:
<%= form_tag %>
<div id="content">
<p>Customer:
<select name="cliente_id" id="cliente_id">
<option value="">Select a customer</option>
<%= options_for_select Cliente.find_all.collect {|c| [c.razon_social,
c.id]} %>
</select>
</p>
<%= observe_field :cliente_id,
:frequency => 0,...