欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

ExtJS grid中如何显示时间

程序员文章站 2023-12-24 15:08:57
...

ExtJS grid中如何显示时间

效果:

 

ExtJS grid中如何显示时间
            
    
    博客分类: ExtJS EXT 

实现代码: 

store : new Ext.data.JsonStore({
        url : 'myAction.action',
        root : "root",
        totalProperty : 'totalProperty',
        fields : [{
           name : mytime,
           type : 'date',
           dateFormat : "Y-m-dTH:i:s",
           mapping : 'mytime'
          }]

 

ColumnModel:new Ext.grid.ColumnModel{
     header : '时间',
     dataIndex : 'mytime',
     width : 20,
     sortable : false,
     menuDisabled : true,
     renderer : function(value) {
        return value.dateFormat('Y-m-d H:i');
       }
    }]

 

在后台java程序中将对字段使用的是Timestamp类型

相关标签: EXT

上一篇:

下一篇: