function ValidateDates() {
var Date1 = Xrm.Page.getAttribute("scheduledstart").getValue();
var Date2 = Xrm.Page.getAttribute("scheduledend").getValue();
if (Date1 != null && Date2 != null) {
if (Date1.setHours(0, 0, 0, 0) < Date2.setHours(0, 0, 0, 0)) {
alert("You must specify an end time that happens after the start time");
}
}
}
var Date1 = Xrm.Page.getAttribute("scheduledstart").getValue();
var Date2 = Xrm.Page.getAttribute("scheduledend").getValue();
if (Date1 != null && Date2 != null) {
if (Date1.setHours(0, 0, 0, 0) < Date2.setHours(0, 0, 0, 0)) {
alert("You must specify an end time that happens after the start time");
}
}
}
No comments:
Post a Comment