Hello,
I don't know if I post in the right forum.
I wonder to know if the development team thinks it's possible to
create on the widget "Autocomplete" a method named select().
This method would triggers a select on the Autocomplete input.
Triggers a
select event. When invoked with no
parameters, the current input's value is used.
If value is a
String, the method try to find a value by label in the data source
corresponding to the text. If value is an Integer, the method try to
find a value by value in the data source corresponding to the number.
Code examples:
Invoke the select method:
1
| $( ".selector" ).autocomplete( "select", "" );
|