Get access or point to SAP UI5 control


You are making a small mistake over here. Method addContent is a method available for UI5 controls not over normal DOM elements.

If you want to gain a reference to the button then you can try with the below snippet:

this.getView().byId("<id of the toolbar>").addContent(new sap.m.Button({
   <property>:<value>
}));

Updated on: 10-Dec-2019

332 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements