Hi community,
Few year back someone overrode this save method as you can see in the below attached image.
now this has became a third party schem for me.
I want to remove this implementation(what all written inside save), because it is restricting the user from saving the record now.
What I have tried is creating the replacing client schema for the above schema and again overriding the save method as :
save : function()
{
this.callParent(arguments);
}
but it didn't worked.
Now, what all I am trying to do is to call the base implementation of Save method by skipping all the overriding implementaion therefore I also tried this :
save : function()
{
this.callSuper(arguments);
}
but it didn't work either.
Can someone help me how can I achieve this.
Many thanks!