cancel
Showing results for 
Search instead for 
Did you mean: 

Issue with Overflow Toolbar - only half of it visible

trmt
Explorer
0 Kudos

Hello forum!

Can somebody tell me what is wrong here and why is the Toolbar only half visible and the rest of it is out of page:

This is the xml view that I have:

<mvc:View
	controllerName="..."
	xmlns="sap.m"
	xmlns:mvc="sap.ui.core.mvc"
	xmlns:core="sap.ui.core">
	<App>
		<Page
            showHeader="false"
            enableScrolling="true"
            class="sapUiContentPadding"
            showNavButton="false">
			<content>
				<Table id="..."
                    inset="false"
                    mode="MultiSelect"
                    fixedLayout="false"
                    items="{...}">
					<headerToolbar>
						<OverflowToolbar>
							<Title text="..." level="H2"/>
						</OverflowToolbar>
					</headerToolbar>
					<columns>
						...
					</columns>
					<items>
						<ColumnListItem type="Active" vAlign="Middle">
							<cells>
								...
							</cells>
						</ColumnListItem>
					</items>
				</Table>
			</content>
			<footer>
				<OverflowToolbar id="otb3">
					<Label text="Actions:"/>
					<ToolbarSpacer/>
					<Button text="..." type="Accept"/>
				</OverflowToolbar>
			</footer>
		</Page>
	</App>
</mvc:View><br>

Thank you!

View Entire Topic
duncanbarre
Participant
0 Kudos

Afer </mvc:View> there is a <br> tag. Why? Maybe this is the issue

trmt
Explorer
0 Kudos

That's not in my code.

This SAP Forum code editor is adding that automatically