我觉得应该很简单但是还是不行,“toDate.getValue();” 不返回 Ext.date 对象。我无法格式化日期。
错误:格式未定义。
下面是我的表单域。
var toDate = new Ext.form.DateField(
{
fieldLabel: "date"
value: new Date(), name: "abs-to-date",
width: 100,
allowBlank: false
}
在提交表格时,我想格式化日期。
var toDateTime = toDate.getValue();
console.log(toDate.getValue());
toDateTime.setHours( toHour.getValue(), toMinute.getValue(), 0 );
abs.to = toDateTime.format( Date.patterns.JSONdateTime ); <---------------------