作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在下面的代码中,我无法在网格面板中获取生日字段,
var store = new Ext.data.SimpleStore({
fields:[
'name',
'phone',
'email',
{name:'birthday', **type:'date', dateFormat:'m/d/y'**}
]
});
var myData = [
['Meyers, Quyn R.', '(943) 570-5141', 'Proin@nullamagna.ca', '05/13/1990'],
['Whitney, Tad T.', '(547) 743-0343', 'vulputate@acurnaUt.org', '05/10/1987'],
];
store.loadData(myData);
var grid = new Ext.grid.GridPanel({
store:store,
columns:[{header:'NAME', width:170 , sortable:true, dataIntex:'name'},
{header:'PHONE NO', width:150 , sortable:true, dataIntex:'phone'},
{header:'EMAIL ', width:150 , sortable:true, dataIntex:'email'},
{header:'BirthDate ', width:100 , sortable:true, dataIntex:'birthday',**renderer: Ext.util.Format.dateRenderer('d/m/Y')** }
],
title:'My Contacts',
autoHeight:true,
width:590,
//renderTo:document.body(),
fram:true
});
最佳答案
您的 birthday
字段配置中的 dateFormat
有误。应该是:
{ name : 'birthday', type : 'date', dateFormat : 'm/d/Y' }
希望这对您有所帮助。
关于extjs - Date Format In Extjs 3.4 不渲染显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12686575/
我是一名优秀的程序员,十分优秀!