Displaying 1 result from an estimated 1 matches for "timedetail_count".
Did you mean:
timedetail_counter
2006 Jan 23
0
Indexed Text Input -> Ajax with Helpers
...wondering if there is any less-ugly
kludge that I can try.
Again, I would like to do
<%= text_input_with_auto_complete :timecode, :timecodedesc, :index =>
timecode_counter %>
but instead have to do this mess
<%= text_field "timecode", "timecodedesc", :index => timedetail_counter %>
<div class="auto_complete" id="timecode_<%=
timedetail_counter.to_s%>_timecodedesc_auto_complete">
</div>
<%= auto_complete_field ''timecode_'' + timedetail_counter.to_s +
''_timecodedesc'',
:update => &...