Hello sreeni379,
To manually work with jqxDropDownList, which acts as a cell editor, you may set the createeditor property in columns, which lets you manipulate the widget used as an editor for a given column. Here is the example for createeditor from jqxGrid’s 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 }); }}
Best Regards,
Dimitar
jQWidgets team
http://www.jqwidgets.com/