<<Stares in awe!>> Kyle R.
Hello! One way to do this is with a POST VALIDATE trigger. The example below calculates the difference in whole days between 'need by' and 'sched start date' and places the result as text in 'string4'. Display 'string4' as 'dtlReadonly' rather than as an editable field. 1. site\mods\majic\zchg...
Dear Team We have below custom date field on employee request form. We want 'Notice Period Served' field to automatically populate based on calculation i.e Resignation Date (Minus) Last working Date = Notice Period Served Pls if anyone can help with the code to achieve this. Thanks ...
Many Thanks Pier
if(requiredStatuses .indexOf (statusSelection.options[i].value.toUpperCase()) >-1 )
Dear Pier Thanks for the input. Pls can you correct me with the following modified code is now ok as you advised? <PDM IF "$prop.form name 3" == "edit"> <script> var requiredStatuses = ["REJ","PEND","APP"]; setTimeout(function()( var statusSelection = document.getElementsByName("SET...
.includes is not supported by IE. Use (.indexOf > -1) instead.
Dear Team On Some workflow tasks type, we have more than 3 statuses which is HOLD and SKIP, And few team should not see these 2 statuses so we have created webform and customized detail wf.htmpl file with following code. The code is working perfect on Chrome Browser but on Internet Explorer its...