I have a g:textfield, and I want to write something and then show me all the options possible that start with the same letter. I understand that is called AutoComplete.
Maybe using jQuery or JavaScript?? Any ideas??
Thanks in advance!
I have a g:textfield, and I want to write something and then show me all the options possible that start with the same letter. I understand that is called AutoComplete.
Maybe using jQuery or JavaScript?? Any ideas??
Thanks in advance!
say you are going to autocomplete on a 'thing' field
thats really it. as you mentioned, the widget will use ajax to query the server when the user types in the field, and it will use the response to draw a div that contains possible completions.