SCRIPT445: Object doesn't support this action
kendo.all.min.js line 1 character 27728
My Code
var sharedDataSource = new kendo.data.DataSource({
pageSize: 10,
transport: {
read: "MYURL"
},
schema: {
type: "xml",
data: "/NewDataSet/Data",
model: {
fields: {
edit: "edit/text()",
}
}
}
});
Xml Output Looks like
<NewDataSet><Data><edit>test</edit></Data><Data><edit>test2</edit></Data></NewDataSet>
I then setup my grid to connect to this datasource like so;
$("#grid").kendoGrid({
dataSource: sharedDataSource,
autoBind: true,
height: 280,
columns: ["edit"]
});
Any thoughts would be awesome.... thank again
<div id="tabstrip"> <ul> <li>First Tab</li> <li>Second Tab</li> </ul> <div>First Tab Content</div> <div>Second Tab Content</div> </div>var tabStrip = $("#tabStrip").kendoTabStrip();


jQuery.getJSON("@Url.Action("DashboardData", "Dashboard")", function(ds) { $("#projectStateChart").kendoChart({ theme: "black", title: { text: "" }, legend: { position: "right" }, dataSource: { data: ds.SummaryDataSource }, series: [{ type: "pie", field: "Count", categoryField: "State", startAngle: 160, padding: 0 }] }).data("kendoChart"); $("#outputText").text(ds.SummaryDataSource);});