jquery-combobox
jquery-combobox copied to clipboard
A ComboBox widget based on the JQuery UI infrastructure
Getting this error on line 89 using your demo and jquery ui 1.11.0 this.options.arrowHTML is undefined
Things work fine with jQueryUI1.9.2. As I tried to migrate to 1.10, I get the following error in the Console, and my page won't even load. TypeError: $.widget is not...
If I use ui.button and ui.combobox in special html context (in some context it works perfect) i found a bug on ui.button: after amount clicks on button it became invisible...
Here's the patch ``` patch Index: web-app/js/jquery.combobox/ui.combobox.js =================================================================== --- web-app/js/jquery.combobox/ui.combobox.js (date 1323263480000) +++ web-app/js/jquery.combobox/ui.combobox.js (revision ) @@ -268,6 +268,10 @@ $('.ui-combobox-list').hide(); this.listElem.css(styles).show(); this.changeSelection(this.findSelection(), e); + // #2 scroll to show...
Hi, I ran into the issue with jQuery 1.6.1 and Coffee Script $("#parking_zone_number1").combobox({ data: ["Orange", "Banana", "Apple", "Strawberry"], }).bind 'comboboxselect', (e, ui) -> console.log(ui.value) Basically, ui.value is always undefined. Did...