Question

Save New Opportunity progress without closing

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 0

Like

2 comments

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

Ryan Farley,

Thanks Ryan. It worked!

Show all comments