预期输出:应该禁用日历日期2019年1月3日和2019年1月11日。
实际结果:日历显示多个禁用日期 即2019年1月1日
2019年1月11日
2019年1月21日
2019年1月31日
这是我的代码:
Ext.create('Ext.form.Panel', {
renderTo: Ext.getBody(),
width: 300,
bodyPadding: 10,
title: 'Dates',
items: [{
xtype: 'datefield',
anchor: '100%',
fieldLabel: 'From',
name: 'from_date',
format:'j/n/Y',
disabledDates:["3/1/2019", "11/1/2019"],
disabledDatesText:'holiday test',
// maxValue: new Date() // limited to the current date or prior
}, {
xtype: 'datefield',
anchor: '100%',
fieldLabel: 'To',
name: 'to_date',
value: new Date() // defaults to today
}]
});