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

EXTJS4.0日期格式化

程序员文章站 2022-07-14 23:53:50
...

日期格式化


1.用在Extjs的Grid中
2.添加方法,用js来格式化
3.具体代码如下:

renderer : function(value) {
            if (value == null || value == 0) {
                return ''
            } else {
                return Ext.util.Format.date(new Date(value), 'Y-m-d');
            }
        }

4.前提:你后端串过来的日期是日期类型而不是字符串类型
5.亲测有效,不对之处望指正,谢谢!
6.扩展:这是js的方法