Version v13.0p_2022-08-22
a Validate() Form returns false allthough a user entered a valid date in the 'from' and the 'to' date and the to date is not before the from date:
Example :
isc.DynamicForm.create({
ID: "form",
width: 500,
titleOrientation: "top",
dataSource: "worldDS",
items: [
{ name: "independence", editorType: "DateRangeItem", showTitle: false },
{ name: "searchButton", type: "ButtonItem", title: "Validate",
click: function () {
form.validate();
}
}
]
});
a Validate() Form returns false allthough a user entered a valid date in the 'from' and the 'to' date and the to date is not before the from date:
Example :
isc.DynamicForm.create({
ID: "form",
width: 500,
titleOrientation: "top",
dataSource: "worldDS",
items: [
{ name: "independence", editorType: "DateRangeItem", showTitle: false },
{ name: "searchButton", type: "ButtonItem", title: "Validate",
click: function () {
form.validate();
}
}
]
});
Comment