Hi jahvani25,
Here is a sample solution for your problem:
$("#jqxgrid").on('cellendedit', function (event) {
let rowID = <code>row${event.args.rowindex}jqxgrid</code>;
let cells = $(<code>#${rowID} div</code>);
let myCell;
for (let i = 0; i < cells.length; i++) {
if (cells[i].children[0])
if (cells[i].children[0].value)
myCell = cells[i]
}
setTimeout(() => {
$(myCell).addClass('jqx-grid-cell-hover jqx-fill-state-hover');
});
setTimeout(() => {
$(myCell).removeClass('jqx-grid-cell-hover jqx-fill-state-hover');
},2000)
});
There is a chance that you may have to change something little in order to make it work with your configuration.
Best Regards,
Stanislav
jQWidgets Team
http://www.jqwidgets.com/