Question

Remove New Record LABEL Container

Hello Team, 

There is any way to remove the container/Label New Record and Display Name from the edit page? I tried removing PageHeaderCaption but did't work.

 

Like 0

Like

3 comments

Dear Federico,

 

Thank you for your question!

 

In this case you would need to navigate to the Advanced Settings, Create a "Replacing View Model"

 

Choose the "MainHeaderSchema" as its parent:

And after that you would need to input this code below to the schema:

 

 define("MainHeaderSchema", [], function() {
  return {
    messages: {},
    mixins: {},
    methods: {},
    diff: [
      {
        "operation":"remove",
        "name":"PageHeaderContainer"
      }
    ]
  };
});

 

Just in case you can Update the DB structure, Generate the Source Code and Recompile the system for the settings to be applied properly.

 

The end result should be like this:

 

But please note that when you would open the page, you would still see this Header as blank:

 

Hope this helps!

 

Please let us know if you have any additional questions,

 

Regards,

 

Danyil

Danyil Onoprienko,

Thank yoy very much

Danyil Onoprienko,

There is a way to do it conditional? Once the page is changed I want to hide the title for a specific page

Show all comments