Hi,
Is it possible to generate a drop down list from a second data source? I have a State table that I would like to get all the states and assigned to list and use it as source instead defined like this: (var list = [‘CA’, ‘WA’, ‘TX’];)
text: ‘State’, datafield: ‘State’, width: 65, columntype: ‘dropdownlist’,
createeditor: function (row, column, editor) {
// assign a new data source to the dropdownlist.
var list = [‘CA’, ‘WA’, ‘TX’];
editor.jqxDropDownList({ autoDropDownHeight: true, source: list });
},
Thanks,
dke