残风逝梦

导航

ExtJs 学习之开篇(三)Ext.grid.Panel表格中的处理

Ext.grid.Panel

Ext.create('Ext.grid.Panel',{
        title:'测试表格',
        width:400,
        height:200,
        loadMask:true,//数据加载中,显示等待信息
        forceFit:true,//列自动填充grid
        columns:[//表格中的列
            {text:'编号',dataIndex:'id',sortable:true/*列是否支持排序*/},
            {text:'姓名',dataIndex:'name',sortable:false},
            {text:'年龄',dataIndex:'age'},
            {text:'生日',dataIndex:'birthday',xtype:'datecolumn',format:'Y年m月d日'}
        ],
        store:Ext.data.StoreManager.lookup('testStore'),
        renderTo:Ext.getBody()
    });

 

//其中生日这一列:

xtype:'datecolumn', format:'Y年m月d日'// 这个是Ext规定的

Y:年

m:月

d:日

H:小时

i:分钟s:秒

 

 

 

 

posted on 2013-11-18 17:49  残风逝梦  阅读(214)  评论(0编辑  收藏  举报