- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
最佳答案
我相信这是预期的行为。
查看此 github 问题:https://github.com/SAP/openui5/issues/30
一位开发者说
The SplitApp is designed to behave like e.g. the "Settings" app on iPhone, where a master-detail structure on tablet is mapped to a linear set of pages on phone. As such it is correct not to display a "Show Master" button.
然而,他们提出以下建议
On phones there is no master button, but you should initially see the master area and navigate from there to the detail area by selecting items.
要实现此目的,您可以执行以下操作:您的详细信息页面应包含一个按钮,您可以使用该按钮导航回主视图(此按钮应仅在设备为手机时可见):
<Page id="detailPage" showNavButton="{device>/isPhone}" navButtonPress="handleNavButtonPress">
</Page>
navButtonPress
处理程序在详细 View 的 Controller 中实现
handleNavButtonPress: function () {
var oSplitApp = this.getView().getParent().getParent();
var oMaster = oSplitApp.getMasterPages()[0];
oSplitApp.toMaster(oMaster, "flip");
}
我使用的device
模型可以实现如下(将这段代码放在Component.js
init
中)
var deviceModel = new sap.ui.model.json.JSONModel({
isPhone: sap.ui.Device.system.phone
});
this.setModel(deviceModel, "device");
有关更多信息,请参阅此资源:http://help.sap.com/saphelp_hanaplatform/helpdata/en/32/5b8edafcfa4c9c8fbd42455a60e379/content.htm
关于sapui5 - 主菜单在移动设备上不可见,但在平板电脑上可见,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36326189/
我正在使用 sapui5 创建一个表。我想知道我是否可以将升序排序和降序排序的默认图标更改为我自己的图标? 补充问题:有没有一种方法可以在标题中显示我的自定义图标而无需先点击它? 最佳答案 只需在 W
我如何在 SapUI5 中构建一个 XML View 来迭代 JSONModel 中的所有元素? 到目前为止,我有一个 Controller : sap.ui.define([ "sap/ui
我是一名优秀的程序员,十分优秀!