I want an event that fires when I change the grid selection even using click or arrow keys. Is there any event available to get selection change?
I have tried to use following events but somehow it is not working. Is this supported in dhtmlxgrid?
You can have an overview of the Selection object in the documentation of the DHTMLX JavaScript UI library. Browse developer guides and API reference, try out code examples and live demos, and download a free 30-day evaluation version of DHTMLX Suite...
When I check in console, grid.selection does not have events property.
Please correct me if I am missing anything.
Thanks,
Arpita
You can use the cellClick event of the grid instead of an event specific to the selection. When that event fires, you can perform actions on the selection object.
Ok, Thanks. Will try to manage using the same.