In my kendo grid I am loading data
.Grid<Portals.Areas.Reports.Models.TransactionReportItem>()
like this. But again I provided in DataSource
.DataSource(dataSource => dataSource
.Ajax()
.PageSize(100)
.Read(read =>
read.Action("GetTransactions","Transactions")))
My problem is when I provided some external filter, because of datasource
it is displaying all data instead of filter data.
My question is how we can apply external filter condition in data source or is it possible to stop calling datasource
? I am using server side grid control
.