SAP Hana Cloud Portal上的应用/小组件高度为零

时间:2018-06-12 13:13:34

标签: user-interface sapui5

所以我正在使用 SAP Hana Cloud Portal 构建(a)网页。

  1. 我定义了一个大致如下的模板:
  2. <mvc:View 
        controllerName="cpv2.templates.custom.Template" 
        height="100%" 
        xmlns:cpControls="sap.hana.uis.flp.control"
        xmlns:l="sap.ui.layout" 
        xmlns:core="sap.ui.core" 
        xmlns:mvc="sap.ui.core.mvc" 
        xmlns:u="sap.ui.unified" 
        xmlns="sap.m">
        <Page showFooter="false" showHeader="false" enableScrolling="true">
            <u:SplitContainer id="mySplitContainer" showSecondaryContent="false">
                <u:secondaryContent>
                    <core:Fragment fragmentName="cpv2.templates.custom.SideNavigationPanel" 
                        type="XML" id="idSideNav"/>
                </u:secondaryContent>
                <u:content>
                    <cpControls:Section alias="custom.shellHeader"></cpControls:Section>        
                    <cpControls:Section alias="custom.header"></cpControls:Section> 
                    <cpControls:Section alias="custom.content"></cpControls:Section>                        
                    <cpControls:Section alias="custom.footerbanner"></cpControls:Section>                   
                    <cpControls:Section alias="custom.footer"></cpControls:Section>
                </u:content>
            </u:SplitContainer>
        </Page>
    </mvc:View>
    
    1. 然后我开发了多个SAPUI5应用程序,我将其转换为 SAP Portal组件。我的应用小工具&#39;所有观点都有这种基本格式:
    2. <mvc:View [namespaces, controller, etc.]>
          <App>
              <!-- most of them have VBox or HBox in their view -->
              <Vbox>
                  <!-- some content here -->
              </VBox>
          </App>
      </mvc:View>
      
      1. 我将这些应用程序部署到Cloud Portal。
      2. 最后我创建了一个网页,使用上面的模板并用这些app-widget来填充定义的部分。
      3. 现在由于某种原因,这些app-widget的高度都是 0 。检查页面显示他们在那里,但他们的高度为零。 有没有解决这个问题?

0 个答案:

没有答案