When using the jquery ui autocomplete combobox, can you set a default value for the combobox?
|
I tried answer this in the way that I would do it in my own project. I read through the demo source code from the page you posted. In the jquery code that generates the autocomplete combobox, I added one line of code that processes when the combobox is created that reads the selected value from your "select" element. This way you can programmatically set the default value (like you would normally if you were not using the autocomplete combobox) Here is the one line I added:
Plain and simple. It sets the value of input to the text value of the selected element from #combobox. Naturally, you will want to update the id elements to match your individual project or page. Here it is in context:
|
|||
|
|
|
Based on Mathieu Steele answer, instead of using this:
I use this:
Widget is now reusable and DRY :) |
|||
|
|
|
Answer #1 is very close, but you cannot hard-code the element ID if you want to keep the function generic. Add this line instead and enjoy!
|
|||
|
|
|
You can achieve this by editing the following statement of the auto-completer:
|
||||
|
|
|
I've tweaked the responses here to use the select variable already defined by the combobox to find the selected option and use that. This means it is generic for which ever element you have defined the combobox on (using id, class or selector ) and will work for multiple elements also.
Hope this helps someone! |
|||
|
|
|
add method to jquery combobox script
|
|||
|
|
|
Call the
|
|||
|
may be this will help you |
|||
|
|
I used the below line of code instead, just another way of achieving the same result :)
|
||||
|
|
I solved it by calling this function on the initial page or runtime. Example:
|
||||
|
|
|
I have an answer that worked for my implementation of the jquery UI combobox. Somewhere in the middle of the code was this:
I changed it to:
and presto, the initial value of the underlying textbox appeared. Seems to me like this should be the default functionality, but what do I know? |
|||
|
|