Hi ! I've createa an app using template 'SAP UI5 Application' in webIDE, but the app is not showing full screen. It has lateral borders. Is there any way I can set it to be full screen ?
I tried setting in component.js config : { fullWidth : true} but it doesn't do anything.
I am using:
<script id="sap-ui-bootstrap" src="../../resources/sap-ui-core.js" data-sap-ui-libs="sap.m" data-sap-ui-theme="sap_belize" data-sap-ui-compatVersion="edge" > </script>
The app is custom, neither master-detail nor list, that's why I'm using simple UI5 App template.
Thanks
Request clarification before answering.
This will fix your problem:
In your component file add configuration for full screen as:
metadata: { manifest: "json",
config: { fullWidth: true } <-- this line of code
},
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 5 | |
| 4 | |
| 4 | |
| 3 | |
| 2 | |
| 2 | |
| 2 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.