日期:2014-05-16 浏览次数:20304 次
var _comdata = Ext.create('Ext.data.Store', {
pageSize : 10,
model : '_colmode',
proxy : new Ext.data.HttpProxy({
url : '../../../SOA/leibieSOA/lbMng.jsp?lb=sbwl',
method : 'POST',
reader : new Ext.data.JsonReader({
root : 'data',
totalProperty : 'totalCount',
fields : [ 'auto_id', 'jlh', 'rq', 'lbbm', 'lbmc', 'ppbm',
'ppmc', 'zjm', 'czy', 'lbbm_id', 'Fkey', 'Fparent',
'Flevel', 'Fnode' ]
}),
simpleSortMode : true
}),
sorters : [ {
property : 'auto_id',
direction : 'DESC'
} ],
remoteSort : true
});
tbar : [ new Ext.form.TextField(), {
text : '名称查询',
iconCls : 'select',
handler : function(x) {
comname = _colgrid.query('textfield')[0].getValue();
_comdata.load({
method : 'POST',
params : {
comname : encodeURIComponent(comname)
}
})
}