In my attempt to expand a class using SAPUI5 methodology, I created a basic version to test its functionality. However, the predetermined title is not displaying in this particular example:
var app;
sap.m.Page.extend("MyPage", {
title: "hi",
renderer: {}
});
app = new sap.m.App({
pages: new MyPage({
//title: "Hey there!"
})
});
app.placeAt("content");
An illustration of this issue can be found here: