S
sdhavala
Guest
Hi, I tried with the following code, its work for me. I removed the serverFiltering: true, and specified the filter condition. $(document).ready(function () { function createGrid() { $('#kgrid').kendoGrid({ dataSource: { type: "jsdo", transport: { jsdo: "CartBE" }, filter: { field: "CUSTID", operator: "eq", value: "k1"}, error: function(e) {} }, reorderable: true, resizable: true, sortable: true, editable: 'inline', columns: [ { field: 'NAME', width: '100px' }, { field: 'TYPE', width: '100px' }, { field: 'QUANTITY', width: '100px' }, { command: ['edit', 'destroy'], title: ' ', width: '200px' } ] });
Continue reading...
Continue reading...