Hello wsundet,
I would like to suggest you an approach that you bind the editor to “select” event in the createeditor
callback.
Then use close the DropDownList and focus the Grid and also – endcelledit
. Please, take a look at this example:
{
text: 'Product', columntype: 'dropdownlist', datafield: 'productname', width: 195,
createeditor: function (row, cellvalue, editor) {
editor.jqxDropDownList({ width: 120 });
editor.on('close', function (event) {
setTimeout(function () {
$("#grid").jqxGrid('endcelledit', row, "productname", false);
}, 0)
});
}
}
Best Regards,
Hristo Hristov
jQWidgets team
http://www.jqwidgets.com