Dear Florian Hafner,
I got It....
We can modify the ToolPalette on the left without extending the shell Control.Just We need to fill toolPopup aggregation with the required content.
toolPopups: [new sap.ui.ux3.ToolPopup("contactTool",{ | |||||||||||
title: "New Contact", | |||||||||||
tooltip: "Create New Contact", | |||||||||||
icon: "sap-icon://save", | |||||||||||
iconHover: "images/Contact_hover.png", | |||||||||||
content:[new sap.ui.commons.TextView({text:"Here could be a contact sheet."})], | |||||||||||
buttons: [new sap.ui.commons.Button("cancelContactButton", {text:"Cancel",press:function(oEvent){ | |||||||||||
sap.ui.getCore().byId("contactTool").close(); | |||||||||||
}})] | |||||||||||
})] |