Hello,
Each time I enter wrong data into date picker, I see a exclamation sign, but this won't prevent me to press "Update" and save data, although it wouldn't be saved correctly. Is there a way to perform validation of date picker value in clientside OnCommand function? Automatic CRUD operations are disabled, I save all data manually.
BTW, it would be nice if you add clientside is_valid() function to each AJAX control. This could look like
function onGridCommand(s, a) {
e.set_cancel(!datePicker.is_valid());
}
Each time I enter wrong data into date picker, I see a exclamation sign, but this won't prevent me to press "Update" and save data, although it wouldn't be saved correctly. Is there a way to perform validation of date picker value in clientside OnCommand function? Automatic CRUD operations are disabled, I save all data manually.
BTW, it would be nice if you add clientside is_valid() function to each AJAX control. This could look like
function onGridCommand(s, a) {
e.set_cancel(!datePicker.is_valid());
}