Hi Community, good morning.
We are looking for a way to save progress when creating a new opportunity without closing the page. I know about the IsSilent flag, but couldn´t figure out a way to implement it by overriding the onSaved method.
Can you guys help me?
Thanks.
Like
2 comments
22:05 Jan 14, 2019
To prevent navigating back after save using the isSilent flag, you can override the save method like this:
save: function(config) { if (!config) config = {}; config.isSilent = true; this.callParent([config]); }
Ryan
Show all comments