cancel
Showing results for 
Search instead for 
Did you mean: 

Is it possible to add a sub view to the HEADER or FOOTER of a PAGE element?

Former Member

Is it possible to add a XMLView as a sub-view in the header or footer area of a page element?

My code:

...
<Page> 
<customHeader><mvc:XMLView viewName="my.ui.view.Header"/></customHeader>
<content></content>
<footer></footer>
</Page> 

When I tried it, I always got an error.

Uncaught TypeError: b.applyTagAndContextClassFor is not a function
    at Object.a.renderBarControl (/resources/sap/m/library-preload.js:3844)
    at Object.a.render (/resources/sap/m/library-preload.js:3843)
    at Object.R.renderControl (sap-ui-core.js:1119)
    at Object.X.render (/resources/sap/ui/core/library-preload.js:975)
    at Object.R.renderControl (sap-ui-core.js:1119)
    at Object.N.render (/resources/sap/m/library-preload.js:3331)
    at Object.R.renderControl (sap-ui-core.js:1119)
    at Object.X.render (/resources/sap/ui/core/library-preload.js:975)
    at Object.R.renderControl (sap-ui-core.js:1119)
    at f.c.render (/resources/sap/ui/core/library-preload.js:547)

Thanks.

Accepted Solutions (0)

Answers (1)

Answers (1)

0 Kudos

If your header content doesn't require a controller, then you can convert your Header view to a Fragment. 🙂
http://www.inkyourcode.com/ui5-xml-fragments/

If it does require a controller, then I'm not too sure. I'm getting the same error.