Question

Hide "Change Case" option in edit page

Hi Community,

 

We wanted to hide below in Case Page, any idea what method we need to override. Thank you.

 

Like 0

Like

1 comments

Hi Fulgen, 



The visibility of this button is bound to the attribute "IsActualDcmSchema". 

The value of the attribute is calculated in the method setIsActualDcmSchema in DcmSectionActionsDashboardMixin. 



You can override this method like this : 

 

setIsActualDcmSchema: function() {
	this.set("IsActualDcmSchema", false);
		}



Best regards,

Yurii. 

Show all comments