Hi...
In my master page i have added one button,set a Icon to the button. But icon is not displaying, instead of Icon if I gave any Text its coming.
I used below code to add Button to the footer to Master page
getHeaderFooterOptions : function() {
return {
sI18NMasterTitle : "TRI_TITLE_MASTER_VIEW",
buttonList : [{
sBtnTxt : "",
//sI18nBtnTxt : "ADDITIONAL_BTN1",
sId : "idcreate01",
sBtnEnabled:true ,
sIcon : "sap-icon://competitor",
onBtnPressed : function(evt) {
},
}],
}; },
Every thing is working fine, a function is triggering after clicking on it.
But only problem is Icon is not setting on button .
Any way to do it ...