私は剣道のことを少し知っていますので、私はあなたの助けを求めています。 xmlデータを使って剣道グリッドを表示しようとしています。ただし、グリッドの行は空白で表示されます.i URL(http://demos.kendoui.com/service/Northwind.svc/Products)からデータを取得し、剣道ウィジェットにデータソースを設定しようとしています。一度サンプルを実行すると、 (http://jsfiddle.net/visibleinvisibly/c3qsdjq0/19/)、空のグリッドが表示されます。私はこれは私がこのサンプル以下剣道UIグリッドウィジェットXMLデータソースコンテンツが表示されない
のためのJSONを使用したいwouldntのdatasource.Iの「スキーマ」オブジェクトで「データ」プロパティを設定することはできませんよと何が起こっていると信じては、サンプルXMLデータ
<feed xml:base="http://demos.telerik.com/kendo-ui/service/Northwind.svc/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">
.............................
...........................
<entry>
..................
....................
<content type="application/xml">
<m:properties>
<d:ProductID m:type="Edm.Int32">1</d:ProductID>
<d:ProductName>Chai</d:ProductName>
<d:UnitPrice m:type="Edm.Decimal">18.00</d:UnitPrice>
</m:properties>
</content>
</entry>
</feed>
です
スキーマ内のデータプロパティは、事前にこの
schema: {
type: "xml",
data: "/feed/entry/content/properties",
model: {
fields: {
ProductID: "ProductID/text()",
ProductName: "ProductName/text()",
UnitPrice: "UnitPrice/text()"
}
}
}
おかげで、
アレックスのように設定されています。