
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2019 06:22 AM
On Change task, I want to check if Planned start date is in future.
If future, abort action
if past, continue
I tried the below code in Client script but doesn't validate.
var plannedStart = g_form.getValue('planned_start_date');
//get Date object using user's display format
var tzPlan = getDateFromFormat(plannedStart, g_user_date_time_format);
var currentDt = new Date();
if(tzPlan > currentDt)
return false;
Solved! Go to Solution.
- Labels:
-
Scripting and Coding
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2019 04:51 AM
Hi
Try the below code in client script
var start_d = getDateFromFormat(g_form.getValue('planned_start_date'), g_user_date_time_format);
var end_d =new Date();
if (start_d > end_d) {
return false;
}
Regards
Ravindra
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2019 05:02 AM