Question
How do I hide the "Dashboards" section in the mobile app?
Answer
Create a custom schems (Source Code) (for example, "MobileUtilitiesCustom")
/* Hiding the "Dashboards" section */
Terrasoft.ApplicationUtils.initializeSystemData({
success: function() {
Terrasoft.ApplicationConfig.moduleGroups.get("sales").modules.splice(0, 1);
}
});In the mobile application manifest (for example, "UsrMobileApplicationManifestCustomMobile") specify the custom schema
{
"CustomSchemas": [
"MobileUtilitiesCustom"
]
}