87,839
社区成员




var store = new Ext.data.Store({
id: "mystore",
pageSize: pagesize,
fields: ["ID", "NAME"],
autoLoad: { start: 0, limit: pagesize },
proxy: {
type: 'ajax',
actionMethods: {
create: 'POST',
read: 'POST', // by default GET
update: 'POST',
destroy: 'POST'
},
url: '/',
reader: {
type: 'json',
rootProperty: 'records',
totalProperty: 'total'
}
}
});