Skip to content

Latest commit

 

History

History
17 lines (15 loc) · 400 Bytes

File metadata and controls

17 lines (15 loc) · 400 Bytes

ComboBoxControl

An autocomplete enabled combo box control. Uses require.js and jQueryUI, but NOT a jQuery plugin. You can use any type of source that the standard jquery autocomplete can use.

Usage:

var comboOptions = {
    inputCSS:{
        "min-width":"0"
    },
    autocomplete:{
        source:"/ajax/combosource.php"
    }
}

var control = new ComboBox("div#myCombo",comboOptions);