Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2022 07:50 PM
The problem here is that sometimes the users click 'save' not understanding why the state went back to 'New'.
I think i have it fixed,
I created an OnChange Client Script on the field 'State' with the following code. Is this going to cause any adverse effects?
So far when i go through the approval steps, the window refreshes and the expected state it shown!
function onChange(control, oldValue, newValue, isLoading, isTemplate) {
if (isLoading || newValue === '') {
return;
}
location.reload();
}