Sencha Touch DatePickerField 中的 Unix 时间戳
我正在尝试使用 Unix 时间戳值作为 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 类来处理时间戳的情况下实现这一点,有什么想法吗?
I am trying to use a Unix Timestamp value as the default value for a DatePickerField in Sencha Touch. Here's the code I'm using for the form:
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 }]
}]
});
I've tried adding dataType: 'time'
to the declaration, but without success. Any thoughts on how this can be achieved without creating a custom Date class to handle timestamps?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用自定义组件 请参阅 Sencha 论坛上的此帖子,因为标准组件暂时无法工作。或者来自此线程的日期时间选择器。
You could have used custom component see this thread on Sencha forum since standard component doesn't work for time. Or a date-time picker from this thread.