Hi
How access the datasource.filter using angular..
i.e how convert the code below to work in angular..
$scope.soneChange = function () {
var grid = $('#grid').data('kendoGrid'); // Pseudo code..
var value = $scope.sone;
if (value) {
grid.data("kendoGrid").dataSource.filter({ field: "Sone", operator: "eq", value: value });
} else {
grid.data("kendoGrid").dataSource.filter({});
}
};