How To Disable A Specific Option In Jquery Autocomplete Combox
When I have simple drop down box
Solution 2:
Sadly, I don't think it's possible.
Even hiding the element with display:none in css still allows it to show in the autocomplete field. Worse, once its selected there it is actually selected in the underlying select box even though it is 'disabled'.
You're only option might be to remove the element when it is disabled, and add it again if it needs to be enabled.
Post a Comment for "How To Disable A Specific Option In Jquery Autocomplete Combox"