Displaying 1 result from an estimated 1 matches for "timecode_counter".
2006 Jan 23
0
Indexed Text Input -> Ajax with Helpers
...to be able to
account for the :index.
I can see in the source why this is the case. I have a workaround
that is an ugly kludge. I am 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>
<...