sap.suite.ui.commons.ProcessFlow
var numbers = [7, 5, 7, 6, 6, 4, 9, 10, 2, 11];
// iterate upto the element just before the last
for (var i = 0; i < numbers.length - 1; i++) {
// check the index of next element
if (numbers.indexOf(numbers[i], i + 1) > -1) {
// if element present log data and break the loop
console.log("index:", i, "value: ", numbers[i]);
break;
}
}
提及标题工具栏,可能会出现全屏&#39;切换整个ProcessFlow控件,除了放大&#39;缩小&#39;等(见图中右上角)。
但是,API没有任何聚合来添加切换按钮或任何工具栏。
是否可以将全屏切换添加到ProcessFlow控件?
答案 0 :(得分:0)
请注意,这些控件(或工具栏)不属于Process Flow UI5 Control。
这些按钮位于标题内容sap.m.Page
。
尽管如此,sap.suite.ui.commons.ProcessFlow
提供了zoomIn()
和zoomOut()
方法。
转到FullScreen
时,您可以sap.m.SplitApp
使用mode
作为HideMode
。
P.S:不要总是用屏幕截图。它们可能是爵士乐,仅用于演示目的。
免责声明:所有意见均属于个人意见。我不代表任何雇主说话。