// 组视图
var groupingView = new Ext.grid.GroupingView({
// groupTextTpl : '{text} ({[values.rs.length]}
// {[values.rs.length > 1 ? "Items" : "Item"]})',//
// 强制(width)填充
forceFit : true,
// 是否在首部Group位置显示列名
showGroupName : false,
// 是否在列菜单中显示"show in group"选择(功能:是否以组方式显示)
enableNoGroups : true,
// 是否在列菜单中显示"groupBy this
// Field"选择(功能:更换分组字段排版)
enableGroupingMenu : false,
// 是否在列中隐藏分段的字段头(列头)
hideGroupedColumn : true
});
store : new Ext.data.GroupingStore({
reader : new Ext.data.JsonReader({
fields : ['project', 'img',
'title', 'responsedate']
}),
// 本地数据加载
data : [{
id : 1,
project : '重要消息',
img : "<image src='image/tool/coins.png' />",
title : '功能完善中1...',
responsedate : "2009-01-01"
}, {
id : 2,
project : '普通消息',
img : "<image src='image/tool/color_wheel.png' />",
title : '功能完善中2...',
responsedate : "2009-01-01"
}],
sortInfo : {
field : 'project',
direction : 'DESC'// 降序'ASC':升序
},
// 组存在的情况下,是否按组排序(默认为false,否)
groupOnSort : true,
groupField : 'project'
})
},
posted on 2010-04-01 15:58
紫蝶∏飛揚↗ 阅读(3838)
评论(0) 编辑 收藏 所属分类:
EXTJS