or
var dataSource = new kendo.data.DataSource({ severFiltering: false, serverPaging: true, pageSize: 15, batch: false, transport: { read: { url: crudServiceBaseUrl, dataType: "json" }, update: { url: crudServiceBaseUrl, type: 'PUT', dataType: "json" } }, schema: { data: "Data", total: "Count", model: { id: "ID", fields: { ID: { editable: false, nullable: false }, Name: { type: "string" }, Unit: { type: "string" } } } }});$("#grid").kendoGrid({ theme: "metro", dataSource: dataSource, scrollable: false, pageable: true, height: 400, toolbar: ["save", "cancel"], columns: ["ID", "Name", "Unit"], editable: true});dataStore.filter({ user_id: 1 });dataStore.filter({ user_id: 2 });Hy i have trouble with Kendo UI Grid. I don't know if this behaviour is a bug or it have to be such way, but when i select row and go to another page and then back to same page selection is gone.
Am i missing something?
<select id="DataCenterLocationList"> <%--<option>North America - South Central</option>--%> <option>North America - NorthCentral</option> <option>Europe - West</option> <%--<option>Europe - North</option>--%> <%--<option>Asia - South East</option>--%> <%--<option>Asia - East</option>--%></select>$(document).ready(function () { // create ComboBox from select HTML element $("#DataCenterLocationList").kendoDropDownList(); var dataCenterLocationList = $("#DataCenterLocationList").data("kendoDropDownList"); });