or
@(Html.Kendo().Grid<BorrowerLoan>() .Name("Loans") .Events(events => events.DataBound("onDataBound")) .DataSource(dataSource => dataSource .Ajax() .ServerOperation(false) .Read(read => read.Action("LoanListAjax", controller)) .PageSize(Constants.PageSize) .Filter(CurrentLoanBalance > 0) )