Hi Hanwik,
If you would like to update the source of the dropdown inside a column, you can use the column’s createeditor callback function. Inside it, you have access to the Dropdownlist editor and you can update its source to a different array of items.
Example:
{
text: 'Category', dataField: 'category', width: 250,
columntype: 'dropdownlist',
createeditor: function (row, cellvalue, editor) {
// Set initial source for the jqxDropDownList editor
editor.jqxDropDownList({ source: ["A", "B", "C", "D"]});
}
}
Best regards,
Peter Stoev
jQWidgets Team
https://www.jqwidgets.com/