我想禁用语义页(母版)中的滚动条,并且仅将滚动条添加到semantic:content
中的列表中,因此我的objectif不在语义页头中进行滚动。
enenableScrolling="false"
在sap.f.semantic.semantic
页面中不存在
答案 0 :(得分:0)
检查API,没有用于禁用滚动条的参数。 我会尝试这样的事情:
<content>
不超过完整高度,则滚动条将不可见(尝试将sap.ui.table.Table
与visibleRowCount
一起使用)ScrollContainer
)添加到内容滚动示例:
<semantic:SemanticPage
class="noScroll"
id="mySemanticPage"
headerPinnable="false"
toggleHeaderOnTitleClick="false"
preserveHeaderStateOnScroll="true"
showFooter="{/showFooter}">
<!-- Content -->
<semantic:content>
<ScrollContainer
class="myContainer"
height="100%"
width="100%"
horizontal="true"
vertical="true"
focusable="true">
css:
.noScroll .sapFDynamicPageContent {
padding: 0;
height: 100%;
}
.noScroll .sapFDynamicPageContent > div {
padding: 0;
height: 100%;
}