Reputation: 14166
I have a separate component on a page that (conditionally) updates a Kendo UI Grid. When the user clicks on a row...I want the change event to fire. However, it currently is NOT firing.
Why isn't the change event firing?
DOJO:
I have created the following DOJO in-support of this question.
Thanks
Upvotes: 0
Views: 7485
Reputation: 1236
Maybe you mean change
event from datasource (not from the grid) ?
Upvotes: 0
Reputation: 4139
The change
event is related to selection. To make the event fire, enable selection.
https://docs.telerik.com/kendo-ui/api/javascript/ui/grid/configuration/selectable
Upvotes: 6