首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

ext groupingStroe 使用注意有关问题

2012-09-01 
ext groupingStroe 使用注意问题??// shared readervar reader new Ext.data.JsonReader({},[{//ArrayRe

ext groupingStroe 使用注意问题

?

?

// shared reader

var reader = new Ext.data.JsonReader({},[{//ArrayReader

name : 'sensorsName'//名字(和地点一样)

}, {

name : 'typeName'//类型

}, {

name : 'siteName'//地点

}, {

name : 'data'//值

}]);


?

?

var store2 = new Ext.data.GroupingStore({// GroupingStore JsonStore

proxy:new Ext.data.HttpProxy({url : '../map.do?method=getAllInMapSensors1'}),

?

autoLoad : true,

?

reader : reader,

sortInfo : {

field : 'sensorsName',

direction : "ASC"

},// 排序的列

groupField : 'typeName'// 分组的列

});

?

?

注意GroupingStore是分组的store,这里一定要用JsonReader才能正确从后台取出数据显示出来。不能用ArrayReader

热点排行