You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Could you provide an example of handling the onRowClick and onSelectionChanged events of the data grid? I tried this:
this.gridOptions = {
onRowClick: (e) => { this.handleRowClick(e); },
onSelectionChanged: (e) => { this.handleSelectionChanged(e); },
bindingOptions: {
dataSource: "collection",
}}
...but I can't get the events to fire when I click on the grid. TY
The text was updated successfully, but these errors were encountered:
Could you provide an example of handling the onRowClick and onSelectionChanged events of the data grid? I tried this:
this.gridOptions = {
onRowClick: (e) => { this.handleRowClick(e); },
onSelectionChanged: (e) => { this.handleSelectionChanged(e); },
bindingOptions: {
dataSource: "collection",
}}
...but I can't get the events to fire when I click on the grid. TY
The text was updated successfully, but these errors were encountered: