
Hello
I'm trying to create kendoGrid with server paging but got the folowing error:
kendo.grid.min.js:25Uncaught TypeError: Cannot read property 'deepExtend' of undefinedCode:
<div id="example"> <div id="grid"></div></div><script type="text/javascript" language="javascript" class="init"> $(document).ready(function() { $("#grid").kendoGrid({ dataSource: { type: "odata", transport: { read: "derived_roles_service.jsp" }, schema: { model: { fields: { description: { type: "string" } name: { type: "string" } } } }, pageSize: 20, serverPaging: true, serverFiltering: true, serverSorting: true }, height: 550, filterable: true, sortable: true, pageable: true, columns: [{ field: "name", title: "name" }, { field: "description", title: "description" } ] }); });</script>I would like to turn off the scheduler's footer. I see in the documentation that you can do this through javascript init, however I would like to do it through MVVM bindings. I tried to do data-footer="false", but nothing happens. Please advise.
Dojo demonstrating how footer still show even with data-footer set to false: http://dojo.telerik.com/UfoXO
We have created our own event creation form external to the Scheduler control. When we click save on the form we would like the event to automatically appear on the scheduler, is there a javascript function to be able to add the event or refresh the scheduler? I have read that there is an observable data option in the scheduler, would this be the mechanism? Is there any code examples of this being used?
Finally, would this work well with the high data volume query and the OData service?
Many thanks.
I'm creating a kendo-grid using grid options object like shown in the example: http://i.stack.imgur.com/EeNeb.jpg
The datasource returns all the fields including the comment (colored in orange). So each record in the table has a few constant cells (td) and another line below that starts from the second <td> until the end of the <tr>.
Is there a way to use the kendo-grid and add the additional comment line for each record ?
Thanks,
Eddie
The scheduler performs well with the small number of events we have been rendering using the component. However the volume of events will increase for our use case considerably over time.
We are currently using an OData feed to retrieve the events. Is there any guidance on how best it would be to render events when dealing with a high volume of data?
Should we be loading data per month per user, and then when the user moves to the next month it requests further data? As part of this has any performance testing being carried out on the scheduler to understand what volume of data the scheduler works best with, where performance may start to degrade?
<input id="ddlFacility" /><div id="SiteOverviewTabStrip"> <ul> <li class="k-state-active">Regional dashboard</li> <li>Production summary</li> </ul> <div class="placeholder table"> <div id="regionalGrid"> </div> </div> <div class="placeholder graph"> <div id="productionGrid"> </div> </div></div>// bind to the change event and update the data source url var ddlFacility = $("#ddlFacility").data("kendoDropDownList");ddlFacility.bind("change", function () { var grid = $("#regionalGrid").data("kendoGrid"); grid.dataSource.options.transport.read.url = "/_layouts/SharePoint.Services/ProxyService.svc/GetFacilityRegionalData?origin=" + this.value(); grid.dataSource.read();
grid.refresh(); alert(grid.dataSource.options.transport.read.url);
});We have our custom transport, where we have implemented our own read. The weird thing that when we call dataSource.read(), sometimes our transport.read gets called, and sometimes no.
Please help