Hello Community!
I need in a specific page not return to the list section, when the user put save the config set in IsSilent = true; how allways can set true?
Like
1 comments
11:58 Aug 07, 2018
Dear Federico,
All you need is overriding a save() method in your page schema.
methods: {
save: function(config) {
if (config) {
config.isSilent = true;
}
else {
config = {
isSilent: true
};
}
this.callParent([config]);
}
},
Show all comments