日期:2014-05-16 浏览次数:20592 次
var paramsStore = new Ext.data.Store({
proxy: new Ext.data.HttpProxy({
url : 'goodparam.ered?method=queryGoodparamList'
}),
reader : new Ext.data.JsonReader({
totalProperty : 'TOTALCOUNT', // 记录总数
root : 'ROOT' // Json中的列表数据根节点
},[
{
name: 'id'
},
{
name: 'name'
}
])
})
楼主是在哪alert("有几条数据:"+paramsStore.getCount()); 页面弹出来为0
你在gridpanel里直接这么写是不行的,你可以在事件中测试或者在grid里的render里测试
事件测试:
paramsStore.on('load',function(store, record, opts){
alert(paramsStore.getCount());
});
grid里的列测试:
{
header: '状态',
sortable: true,
dataIndex: 'STATUS',
width: 80,
renderer: (function(v, p, record, rowIndex, index, store){
alert(store.getCount());
}).createDelegate(this)
}