dear all,
i've the kendo grid which i need to manually enable the grid properties like sorting,filtering,paging,grouping via button click to the grid
i.e it is like a toolbar for the grid to enable or disable the sorting,filtering,paging,grouping,refresh when button click event occurs
this is my sample code to enable the properties
but it shows the error
may any one help for this thread
thanks in advance
i've the kendo grid which i need to manually enable the grid properties like sorting,filtering,paging,grouping via button click to the grid
i.e it is like a toolbar for the grid to enable or disable the sorting,filtering,paging,grouping,refresh when button click event occurs
this is my sample code to enable the properties
$("#grouping").click(function () {
$("#grid").data("kendoGrid").groupable(true);
});
$("#removegrouping").click(function () {
$("#grid").data("kendoGrid").groupable(false);
});
$("#sorting").click(function () {
$("#grid").data("kendoGrid").sorting(true);
});
may any one help for this thread
thanks in advance