Hi Venu Gopal,
You can use the editable column’s “initeditor” callback to initialize your ComboBox depending on the value of another cell in the row. To get the value of another cell, use the “getcellvalue” method.
Here’s how to use the “initeditor” callback.
text: 'Ship Country', datafield: 'ShipCountry', width: 150, columntype: 'combobox', initeditor: function (row, column, editor) { // assign a new data source to the dropdownlist. var list = ['Germany', 'Brazil', 'France']; editor.jqxDropDownList({ source: list }); },
Best Regards,
Peter Stoev
jQWidgets Team
http://www.jqwidgets.com