Add Action in Detail

Hello Community! 

Need add a button in the actions menu into detail. How can i do it?

Regards ,

 

Like 1

Like

1 comments

Sovled! 

addToolsButtonMenuItems: function(toolsButtonMenu) {
	this.callParent(arguments);
 
	toolsButtonMenu.addItem(this.getButtonMenuSeparator());
	toolsButtonMenu.addItem(this.getButtonMenuItem({
	  Caption: this.get("Resources.Strings.MyBoton"),
	  Click: {"bindTo": "OnButonClick"},
	  Visible: {"bindTo": "IsSelectRecord"}
        			}));

 

Show all comments