Hi David,
ComboBox editor will be available in version 2.5 of jQWidgets which will be released this month. Auto-Complete editor is not planned as we do not have auto-complete widget. The functionality available in auto-complete is already available in the ComboBox so it should cover the required behavior of the auto-complete. In addition, the Data Source of the DropDownList editor can be changed on demand by using the column’s createditor callback function which is called when the editor is initialized.
The following example demonstrates how to replace the default data source of the DropDownList editor. The code snippet is from the Grid’s API Documentation.
{ text: 'Product', columntype: 'dropdownlist', datafield: 'productname', width: 177, createeditor: function (row, cellvalue, editor) { var dataSource = ['Cappuccino', 'Caramel Latte', 'Caffe Espresso']; editor.jqxDropDownList({source: dataSource }); }}
To use JSON data source with jqxDropDownList, please take a look at this sample: bindingtojson.htm.
Best Regards,
Peter Stoev
jQWidgets Team
http://www.jqwidgets.com