Question
I need to Hide the Analytics Data view button in a section, it's possible?
22:43 Jun 05, 2020
Like
2 comments
11:13 Jun 06, 2020
Dear Fernando,
In order to implement the required functionality please do the following:
1. Create a replacing client module for the section that should be modified. Please find more information about it in the article by the link below:
https://academy.creatio.com/documents/technic-sdk/7-16/creating-custom-client-module-schema
2. Add the following code to the module:
methods: {
/**
* @override
*/
getDefaultDataViews: function() {
var result = this.callParent(arguments);
delete result.AnalyticsDataView;
return result;
}
}
Best regards,
Norton
Show all comments