Hello Community!
Need add a button in the actions menu into detail. How can i do it?
Regards ,

Like
1 comments
18:29 Nov 02, 2017
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