You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you make a selection the item is added to the input box. Also there is a hidden input field generated for each AutoSuggest box that stores the values (comma separated) of each item you have selected. This input box will have a unique ID as well as a class name of "as-values".
Firefox, latest edition.
I used autosuggest on a field called "f1" in a form. eg: $("#f1").autoSuggest( blah blah blah );
Comma separated values go into the "as_values_*" field. Leading comma? Wierd.
on form submit input "f1" is empty.
When you make a selection the item is added to the input box.
What am I doing wrong?
The text was updated successfully, but these errors were encountered:
It seems the library uses the original field as a temporary storage for the search data, but once the selection has been made the original field is used for the NEXT search field.
If, instead, the original field were hidden and a temporary field was used to hold the search data then both needs could be met. Would this be possible?
Firefox, latest edition.
I used autosuggest on a field called "f1" in a form. eg: $("#f1").autoSuggest( blah blah blah );
Comma separated values go into the "as_values_*" field. Leading comma? Wierd.
on form submit input "f1" is empty.
What am I doing wrong?
The text was updated successfully, but these errors were encountered: