Hi!Is there a way to highlight the edited field after the edit was successful within the Maker, or must it be done manually?
Also, which event/script/handler can I use to highlight edited item? Combine Form_CustomValidate and Client Script event of the edit page?Thanks in advance!
There is no such feature. You need to do that by yourself:
- Identify fields that are changed during edit (e.g. in Row_Updated server event)
- Highlight fields after update successful (e.g. in Row_Rendered server event)
Thanks Michael,I was able to create a workaround using temporary localStorage but for the sake of optimization I will check out Your idea