主要详细信息splitApp在移动查看器上为空5SAPUI5°

时间:2017-04-13 10:17:47

标签: sapui5

我是sapui5的初学者。我正在使用splitApp架构开发一个sapui5项目。

我想知道为什么Master视图在桌面计算机上正常工作,但在移动设备上是空的。

Master.view.xml:

<mvc:View controllerName="query.sap.controller.Master" xmlns:mvc="sap.ui.core.mvc" xmlns:core="sap.ui.core" xmlns="sap.m"
xmlns:u="sap.ui.unified" xmlns:semantic="sap.m.semantic">
<SplitContainer>
    <masterPages>
        <semantic:MasterPage title="Query List">
            <semantic:content>
                <!-- For client side filtering add this to the items attribute:  parameters: {operationMode: 'Client'}}" -->
                <List id="table" width="auto" class="sapUiResponsiveMargin" 
                items="{ path: '/QueriesSet', sorter : { path : 'Cubename', group : true }
            }"
                    growingScrollToLoad="true">
                    <headerToolbar>
                        <Toolbar>
                            <SearchField width="80%" search="onSearchQuery"/>
                            <Button icon="sap-icon://refresh" press="onRefresh"/>
                        </Toolbar>
                    </headerToolbar>
                    <items>
                        <ObjectListItem press="onListItempress" type="Active" title="  {Queryname}" intro="Query name : ">
                            <firstStatus>
                                <ObjectStatus text="{GenerationTime}"/>
                            </firstStatus>
                            <secondStatus>
                                <ObjectStatus state="Warning" title="Created By " text="{CreatedBy}"/>
                            </secondStatus>
                        </ObjectListItem>
                    </items>
                </List>
            </semantic:content>
        </semantic:MasterPage>
    </masterPages>
</SplitContainer>

在桌面上:

image

在手机上:

image

0 个答案:

没有答案
相关问题