Hi all, I'm very newby on SDM and I'm starting to deal with it. I think my question is pretty simple
I want to alert a message in a yellow targe like 'Special Handling VIP' (like attached image) on top of form instead of pop-up on navigator.
Could someone tell me how to do that? I appreciate any help. Tks
<script>
var zStartDate = "$args.alg.time_stamp";
var zEndDate = "$args.alg.z_time_stamp_end";
if(zEndDate < zStartDate){
alert(zStartDate);
}
</script>
I've tried like this but it didn't works
showAlertMsg(zStartDate);
ahdframe.AlertMsg = (showAlertMsg(zStartDate));