The bold line above: I'm not sure what files or folders need to be brought over.
thanks for any help.

I’m trying to integrate ASP.Net GridView control with Kendo UI Grid control.
Please let me know how I can integrate ASP.Net GridView Template Columns with Kendo UI Grid control and how can I make Sorting functionality into Gridview with the use of Kendo UI control.
Thanks.
$("#datepickerF").kendoDatePicker({
// defines the start view
startView: "year",
// defines when the calendar should return date
depth: "year",
// display month and year in the input
format: "MMMM yyyy",
});
$("#datepickerT").kendoDatePicker({
// defines the start view
startView: "year",
// defines when the calendar should return date
depth: "year",
// display month and year in the input
format: "MMMM yyyy",
});
});
Marcus
I'm trying to filter a data source with the data bound to a remote source as per the Grid/Remote-data.html sample.
I've made some mods and nothing seems to happen. I'm trying to filters the results by ShipName.
<script> $(document).ready(function() { var sharableDataSource = new kendo.data.DataSource({ type: "odata", transport: { }, pageSize: 10, serverFiltering: true, serverPaging: true, serverSorting: true, }); $("#grid").kendoGrid({ dataSource: sharableDataSource, height: 250, scrollable: true, sortable: true, pageable: true, columns: ["OrderID", "CustomerID", "Freight", "ShipName", "ShipCity"] }); $("#apply").live("click", function() { sharableDataSource.filter({ field: "ShipCity", operation: "eq", value: "Reims" }); }); });</script>