Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在网格中设置剑道日期选择器的最大日期。
我有一个类型为“日期”的列,所以我想为该列的 Datepicker 设置最大日期。
当您在网格绑定的数据源上定义架构时,只需添加对日期列的验证
validation: { max: new Date('12/1/2006') }
参见示例http://jsbin.com/quyoto/1/edit?html,js,output