I wrote a small helper which receive a parameter "f", as following:

def cno_helper(f)
    concat "<INPUT id='" + f + "' size='13' type='text' />"
    concat "<div class='auto_complete' id='" + f + "_auto_complete'"
    concat
"style='display:none;border:none;background-color:white;height:150px;overflow:none;cellpadding:0;cellspacing:0'>"
    concat "</div>"

    concat auto_complete_field( f,
          :frequency => 0.4,
          :min_chars => 2,
          :method => 'GET',
          :url=>{:action=>'autocomplete_vc_cno'},
          :tokens => ',')
end

It generate the code I want, and the auto_complete_field is working.
The program is I don't know how to pass the current value of the input
field to the :action 'autocomplete_vc_cno'.

Any idea? Thanks in advance.
-- 
Posted via http://www.ruby-forum.com/.

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to rubyonrails-t...@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to