when using the jquery ui autocomplete combobox, can you set a deafult value of the combobox ?
|
feedback
|
|
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:
| |||
|
feedback
|
|
Based on Mathieu Steele answer, instead of using this:
I use this:
Widget is now reusable and DRY :) | |||
|
feedback
|
|
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!
| |||
|
feedback
|
|
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! | |||
|
feedback
|
|
function setAutoCompleteCombo(id,value,display) {
} I solve by this function on initial page or runtime example setAutoCompleteCombo('#frmData select#select_id',option_value,option_text); | |||
|
feedback
|
|
Call the
| |||||||
feedback
|
|
may be this will help you | |||
feedback
|
|
add method to jquery combobox script
| |||
|
feedback
|
|
We can edit in the following statement of autocompleter value = selected.val() ? selected.text() : "Select Institution"; | |||
|
feedback
|
|
I used the below line of code instead, just another way of achieving the same result :) $('option:selected', this.element).text() Cheers, | |||
|
feedback
|