Hi,
I want change the source of the combo box dinamically.
{
text : ‘Location’,
//source : locationArray,
datafield : ‘alocation’,
width : 60,
align : ‘left’,
cellsalign : ‘left’,
rendered : tooltiprenderer,
pinned : true,
columntype : ‘combobox’,
createeditor : function(row, column, editor) {
editor.jqxComboBox({
id:”locationID”,
source : locationArray,
promptText : “Location”,
autoDropDownHeight : true,
itemHeight : 2,
selectedIndex : 0
});
},
here location “locationArray” will change based on the another combo box value change in the grid.
PS combo box is in side the grid.
Regards,
SSP