extjs 日期控件显示日期加一天
原创 exception 发表于:2019-07-04 14:33:19
  阅读 :426   收藏   编辑
var sys_searchDataS = Ext.create('Ext.form.field.Date', {
    anchor: '100%',
    labelAlign: 'right',
    fieldLabel: '结束日期',
    editable: false,
    format:'Y-m-d',
    value: Ext.Date.add(new Date(), Ext.Date.DAY, -1)
});