enableNotifications
This function is used to disable or enable app messages, that are displayed automatically, like the "record Saved" message, after a successful save operation.
Parameters
param - The type of message. The following messages types are supported
"save" - The save Message
Example Usages
brixxApi.enableNotifications("save", false); //Disable the save message
brixxApi.enableNotifications("save", true); //Enable the save message (This is the default)
Last updated