Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello, is there any way to script an alert to run on edit or transition that would alert the user that a field needs to contain a value.
Example:
if(item.workflowActions[i].transition.transitionID === 376){
if(item.DATE_1 !== null && item.DATE_2 !== null){
//perform an action
}
else{
alert("Dates 1 and 2 need to be filled out");
}
}
Thanks,
Trent
Solved! Go to Solution.