3
我試圖通過數據視圖顯示一些數據的數據,但由於某種原因,我得到一個消息emptytext(無數據)。 這裏是我的數據視圖:獲取與ExtJS的3.4面板+數據視圖+ jsonstore
xtype : 'dataview',
emptyText : 'No data',
id : 'cartdata',
multiSelect : true,
plugins : new Ext.DataView.DragSelector({ dragSafe : true }),
store : new Ext.data.JsonStore({
url : '/aecms/user-photos-view/',
autoLoad : true,
root : 'data',
fields : [
'images'
],
listeners : {
scope : this,
load : function(store) {
var data = store.reader.jsonData;
if (data.systemMessage) {
infoReport(data.systemMessage.title, data.systemMessage.message, data.systemMessage.icon);
}
}
}
}),
tpl : new Ext.XTemplate(
'<tpl for=".">',
'<tpl for="images">',
'<a title="{id}">test</a>',
'</tpl>',
'</tpl>'
)
,這是從PHP數據:
{"data":{"images":{"id":"2"}},"status":"success"}
我新的ExtJS的,並感謝所有幫助。
好,非常感謝,現在我會挖掘更多關於xtemplate解決我的煩惱。 – Milwater