Hello, I want to get the field values of a row in an ejs-grid on double click of the row. I'm using the recordDoubleClick function. "args.ICN" refers to a field in the grid.
function checkOutGridDoubleClick(args) {
alert(args.ICN)
}
When I double click the row, the alert tells me that the value is undefined.
What am I doing wrong?
Thanks