Hi,
I cannot think of any other method than to set up a rule for a selection of fields that you want them to change, use the trigger “is changed from initial value” and call “showTheSaveBtn” in the “Run these functions.
Then add this to the Custom JS:
// Hide initially
spjs.dffs.toggleSaveBtn(false);
// This function triggers on a rule
function showTheSaveBtn(){
spjs.dffs.toggleSaveBtn(true);
}
Alexander