我正在使用sencha构建移动应用程序。
我创建了一个页面,其中有3-4个日期选择器。 我需要以不同的格式显示所有格式,例如dd / MM / yyyy中的一个日期选择器,其他显示 MM-yyyy,仅在另一年。
请指导我如何做到这一点
答案 0 :(得分:6)
'slotorder'配置选项允许您指定日期,月份和年份的顺序 - 但是,您可以省略您不想要的那些。我只想要数月和数年:
{
xtype:'datepickerfield',
picker:{xtype:'datepicker', slotOrder:["year", "month"],}
},
答案 1 :(得分:0)
使用Sencha Touch 2
显示日期MM-yyyy
var date = new Date();
alert(Ext.Date.format(date, 'm/Y'));
和dd / MM / yyyy
var date = new Date();
alert(Ext.Date.format(date, 'm/d/Y'));
答案 2 :(得分:0)
例如,您可以添加:
"dateformat: "d.m.Y" "
具有“正确”日期格式的每个字段中的属性