Json   发布时间:2022-04-22  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了Ext.data-GroupingStore/ JsonStore/ SimpleStore大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
Ext.data.GroupingStore
继承自Ext.data.Store,为Store增加了分组功能.其它用法与Store一致,惟一需要注意的是使用GroupingStore时必须指定sorTinfo信息
增加了配置属性
groupField : String//用于分组的字段
groupOnSort : Boolean//如果为真,将依排序字段重新分组,认为假
remoteGroup : Boolean//远程排序
当然也会多一个group方法
groupBy( String field,[Boolean forceRegroup] ) : void
顾名思义都是重新排序用的
下面是个简单的示例
var arr=[ [1,'本','拉登'],[2,'笨',[3,'拉灯'] ];
var reader = new Ext.data.ArrayReader(
{id: 0},
[
{name: 'name',mapping: 1},
{name: 'Occupation',mapping: 2}
]);
var store=new Ext.data.GroupingStore( {
reader:reader,
groupField:'name',
groupOnSort:true,
sorTinfo: {field: 'Occupation',direction: "ASC"} //使用GroupingStore时必须指定sorTinfo信息
});
store.loadData(arr);
//GridPanel以后会讨论,这儿使用它是为了直观的表现GroupingStore
var grid = new Ext.grid.GridPanel( {
ds: store,
columns: [
{header: "name",width: 20,sortable: true,dataIndex: 'name'},
{header: "Occupation",dataIndex: 'Occupation'}
],
view: new Ext.grid.GroupingView( {
forceFit:true,
groupTextTpl: '{text} ({[values.rs.length]} {[values.rs.length > 1 ? "Items" : "Item"]})'
}),
frame:true,
width: 700,
height: 450,
collapsible: true,
animCollapse: false,
title: 'Grouping Example',
renderTo: 'Div_GridPanel'
});
Ext.data.JsonStore
也是Store子类,目标是更方便的使用json对象做数据源
构造中多了fields,root,用法如下例所示
/*
这是使用远程对象,返回内容与下面本地对象的data一致
var store=new Ext.data.JsonStore({
url:'jsoncallback.js',
root:'rows',
fields:['id','name','Occupation']
});
store.load();
*/
var store=new Ext.data.JsonStore( {
data: { 'results': 2,'rows': [
{ 'id': 1,'name': 'Bill',Occupation: 'Gardener' },
{ 'id': 2,'name': 'Ben',Occupation: 'Horticulturalist' }
]},
autoLoad:true,'Occupation']
})

//目前请先略过gridpanel,以后再说 var grid = new Ext.grid.GridPanel( { ds: store,columns: [ {header: "id",width: 200,dataIndex: 'id'},{header: "name",{header: "Occupation",dataIndex: 'Occupation'} ],height:350,width:620,title:'Array Grid',renderTo: 'Div_GridPanel' }); Ext.data.SimpleStore 从数组对象更方便的创建Store对象,例 var store=new Ext.data.JsonStore( { data:[ [1,'Bill','Gardener'],'Ben','Horticulturalist'] ],autoLoad:true,fields:[ {name: 'name',{name:'Occupation',mapping:2}] }) var grid = new Ext.grid.GridPanel( { ds: store,columns: [ {header: "name",renderTo: 'Div_GridPanel' });

大佬总结

以上是大佬教程为你收集整理的Ext.data-GroupingStore/ JsonStore/ SimpleStore全部内容,希望文章能够帮你解决Ext.data-GroupingStore/ JsonStore/ SimpleStore所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。