我正在尝试使用Unix Timestamp值作为Sencha Touch中DatePickerField的默认值。这是我用于表单的代码:
var profileForm = new Ext.form.FormPanel({
title: 'Profile',
standardSubmit : false,
items: [{
xtype: 'fieldset',
title: '',
instructions: 'Edit your profile above',
defaults: { labelAlign: 'left', labelWidth: '40%' },
items: [{ xtype: 'datepickerfield', name: 'dob', label: 'DoB', value: user.dob }]
}]
});
我尝试在声明中添加dataType: 'time'
,但没有成功。关于如何在不创建自定义Date类来处理时间戳的情况下如何实现这一点的想法?
答案 0 :(得分:0)
您可以使用自定义组件see this thread on Sencha forum,因为标准组件暂时不起作用。或日期时间选择器from this thread。