- The application menu extends past the righthand border of the device.
- The page menu extends cannot be closed by clicking back on the page.
For applications with the Basic Template unchanged:
1. Download the xml file below.
2. Checkout the Basic template into a project and click the "Import From XML" action button in the project. 3. Override the current Basic template and promote through to PD.
For applications with the Basic Template changed:
1. Checkout the Basic template into a project. 2. Open the Basic template and search for "dropdown-menu-right". Change this value to "dropdown-menu-end" 3. Find the script tags with an onclick function on the toggleSidebarNav HTML element. 4. After the onclick function ends add the following function:
Code: Select all
document.getElementById('toggleSidebarNav').onblur = function(){
sidebarNav.classList.remove('collapse');
}