我想在 datepicker(jquery 查询生成器)中隐藏未来的日期,如果我设置maxDate: '0'
,则显示未来的日期
{
id: 'created_date',
label: 'Date',
type: 'datetime',
validation: {
format: 'YYYY/MM/DD'
},
plugin: 'datepicker',
plugin_config: {
format: 'yyyy/mm/dd',
maxDate: 0,
autoclose: true
},
operators: ['equal', 'not_equal', 'less', 'less_or_equal', 'greater', 'greater_or_equal', 'between', 'not_between', 'is_null', 'is_not_null']
},
如何在查询生成器中隐藏未来日期?