Reputation: 108
I have implemented an onclick event in slickgrid. It works fine if I click on the grid using the mouse but if I trigger a click event from the web console, the value of the row in args is displaying as negative. So I'm not able to proceed further. Any help is appreciated.
grid.onClick.subscribe(function(e, args) {
var row = args.row;
The row
is coming as negative if I trigger a click event on the grid using javascript from web console.
Upvotes: 1
Views: 1353
Reputation: 108
I found the solution for the issue. We can trigger the slickgrid events in following ways:- grid.onClick.notify({row:0})
Upvotes: 2