Reputation: 63
I am trying to filter the data from outside kendo grid. After getting right data, I am not able to see filtered data on UI.
$scope.kendogridOptions.dataSource.read(); - Not working out
Thanks in advance !
Upvotes: 1
Views: 329
Reputation: 341
You need to refresh the grid UI after read from datasource:
$scope.kendogridOptions.refresh();
Upvotes: 1