this questionと同様に、データビューを実際に表示することができません。私は自分の店を再構築しようとしましたが、私は何か不足していると思います。ここで私はこれまで持っているものです:Ext.DataViewのデータを構造化するにはどうすればよいですか?
アプリケーション、モデル、ショップ
Ext.regApplication({
name: 'TestApp',
launch: function() {
this.viewport = new TestApp.views.Viewport();
}
});
TestApp.models.StoreMe = Ext.regModel('TestApp.models.StoreMe', {
fields: [
'id',
'name',
'age'
]
});
TestApp.stores.storeMe = new Ext.data.Store({
model: 'TestApp.models.StoreMe',
proxy: {
type: 'ajax',
url: 'data.json',
reader: {
type: 'json'
}
},
autoLoad: true
});
ビューポートとのDataView
TestApp.views.Viewport = Ext.extend(Ext.Panel, {
fullscreen: true,
layout: 'card',
items: [
{
id: 'dataView',
xtype: 'dataview',
store: TestApp.stores.storeMe,
itemSelector: 'div.dataViewItem',
emptyText: 'NO DATA',
tpl: '<tpl for "."><div class="dataViewItem">ID: {id}<br />Name: {name}<br />Age: {age}</div></tpl>'
}
]
});
JSONが
[
{
"id": "1",
"name": "sam",
"age": "4"
},
{
"id": "2",
"name": "jack",
"age": "3"
},
{
"id": "3",
"name": "danny",
"age": "12"
}
]
アイデア?これに似たその他の質問はすべてExt.JsonStoreを使用していますが、Sencha APIのドキュメントではこのようにしています。
UPDATE
ストアが正常に動作しています。
Ext.util.MixedCollection
...
items: Array[3]
0: c
data: Object
age: "4"
id: "1"
name: "sam"
1: c
2: c
length: 3
__proto__: Array[0]
keys: Array[3]
length: 3
...
より良い質問:どのように私は表示のみにExt.DataViewつのアイテムを得るのですか?ハードモード:ストアのフィルタリングが機能しません。 – Yoshokatana
TestApp.stores.storeMe.dataの出力は何ですか? –
それは私に3つの項目を与えます。私は主な質問にそれを加えました。 – Yoshokatana