Hello,
I've been asked to migrate an existing KendoUI grid to Kendo UI pivot grid.... before I was doing
.DataSource(dataSource => dataSource .Ajax() .ServerOperation(false) .Read(action => action.Action("LoadOperations", "InquiryOperations").Data("getData")) )How can I do this with pivot since the Transport helper doesn't support Data?
.DataSource(dataSource => dataSource .Ajax() .Transport(transport => transport.Read("LoadOperations", "InquiryOperations").Data("getData")))Thanks