Rahul
Rahul

Reputation: 63

Telerik Kendo Grid Rebind Issue

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

Answers (1)

Javier Pallarés
Javier Pallarés

Reputation: 341

You need to refresh the grid UI after read from datasource:

$scope.kendogridOptions.refresh();

Upvotes: 1

Related Questions