0
Write databound function
- @(Html.Kendo().Grid<BatchDetails>()
- .Name("Grid")
- .Events(x => x.DataBound("onDataGridBound"))
- )
in that javascript function write your logic (i.e. if time is out of clock then skip that row / hide that row)
- $function({
- var grid = $("#Grid").data("kendoGrid");
- grid.bind("dataBound", function(){
- //dosomething here using for loop
- });
- })