Skip to content

Commit

Permalink
draw title in bold
Browse files Browse the repository at this point in the history
  • Loading branch information
alja committed Mar 12, 2021
1 parent 400425f commit 6c759c2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ui5/controller/MyNewMain.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ sap.ui.define(['rootui5/eve7/controller/Main.controller',
this.mgr.handle.setReceiver(this);
//this.mgr.
console.log("register my controller for init");
// this.mgr.RegisterController(this);

var elem = this.byId("centerTitle");
let title = "<strong>" + elem.getProperty("htmlText")+ "</strong>";

elem.setHtmlText(title);
},

onEveManagerInit: function() {
Expand Down

0 comments on commit 6c759c2

Please sign in to comment.