I am using the following code that uses the event Object. I am assuming it is the Grid event Object. Can you help find documentation on all possible event properties or event.args properties.
gridCells.on(‘dragStart’, function (event) {
var dragStartCell = $(jqxgrid).jqxGrid(‘getcellatposition’, event.args.pageX, event.args.pageY);
});
I need to know is possible at the time of gridCells.on(‘dragStart’, function (event)
What is the Column Name?
What is the Rowid?
I would like to know all possibilities of the Grid event object if I am understanding this correctly.