87,996
社区成员




['a', 'b', 'c', d', 'e', 'f', 'g', 'h'])
var dsCust = new Ext.data.Store({
proxy: new Ext.data.HttpProxy({ url: 'ProcessQuery.ashx'}), //这里
reader: new Ext.data.XmlReader({
record: "Table" //,
},
['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h'])
});
dsCust.load();
dsCust.on('load', function() { alert(123); })
alert(dsCust.getCount());
Ext.onReady(function(){
var dsCust = new Ext.data.Store({
proxy: new Ext.data.HttpProxy({ url: 'PeocessQuery.ashx'}),
reader: new Ext.data.XmlReader({
record: "Table"
},
['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h'])
});
dsCust.load();
dsCust.on('load', function() { alert(123); })
alert(dsCust.getCount());
})