I need to Hide the Analytics Data view button in a section, it's possible?

Like 0

Like

2 comments

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

Thanks Norton!

Show all comments