如何在jqxGrid日期列字段
中设置最大或最小日期$('#jqxGrid-grid').jqxGrid({
columns:
[
{
text: 'Created Date', datafield: 'created_date', filtertype:'date', width: 150}
//How to set date restriction for this field.
]
});
答案 0 :(得分:1)
您可以通过实施jQWidgets Grid验证功能来验证您的用户输入。
text: 'Ship Date', datafield: 'date', columntype: 'datetimeinput', width: 110, align: 'right', cellsalign: 'right', cellsformat: 'd',
validation: function (cell, value) {
if (value == "")
return true;
var year = value.getFullYear();
if (year >= 2015) {
return { result: false, message: "Ship Date should be before 1/1/2015" };
}
return true;
}