or
$("#vertical").kendoSplitter({ orientation: "vertical", panes: [ { collapsible: false, resizable: false, size: "80px" }, { collapsible: false, resizable: true, size: "500px" }, { collapsible: false, resizable: true, size: "300px" } ] });
$codesListContainer.kendoGrid({ dataSource: { type: "json", transport: { read: '@Url.Action("AllCodes", "Dossier")'
}, aggregate: [ { field: 'TotalPrice', aggregate: 'sum', format: "{0:C}" }], pageSize: 10 }, selectable: 'row', detailInit: detailInit, columns: [ { field: 'Number', title: 'Nr.', width: '10%' }, { field: 'Title', title: 'Title', width: '60%' }, { field: 'UnitPrice', title: 'Price per unit', width: '10%' }, { field: 'NumberOfUnits', title: 'Number of units', width: '10%' }, { field: 'TotalPrice', title: 'Total', format: "{0:C}", footerTemplate: '#=kendo.format("{0:c}", sum)#', width: '10%' } ], pageable: true, scrollable: false, change: function () { alert("change"); }});$("#usersGrid").kendoGrid({ dataSource: { schema: { model: { id: "Id", fields: { Id: { editable: false }, Email: { type: "email", validation: { required: true} }, Username: { validation: { required: true} } } } } },
...