Autocomplete combobox onchange event
Hi there,
I have the demo of the AutoComplete Combobox working on my site. I am wondering how to trigger the onchange event of the underlying select when I choose a value in the autocomplete combobox. I am using the exact code shown in the demo
http://jqueryui.com/autocomplete/#combobox when you click view source.
I'm guessing I have to trigger it in the below function but I'm not sure how, Any suggestions?
- this._on(this.input, {
- autocompleteselect: function (event, ui) {
- ui.item.option.selected = true;
- this._trigger("select", event, {
- item: ui.item.option
- });
- },
- autocompletechange: "_removeIfInvalid"
- });