Reputation: 1541
The UX guidelines for sap.suite.ui.commons.ProcessFlow
mentions of a header toolbar, with the possibility of a 'Full screen' toggle for the entire ProcessFlow control, apart from 'Zoom In', 'Zoom Out' etc. (see top right in the image).
However, the API doesn't have any aggregations to add neither the toggle nor any toolbar.
Is it possible to add a Full screen toggle to ProcessFlow control?
Upvotes: 2
Views: 1319
Reputation: 4225
Note that these controls(or toolbar) are not part of Process Flow UI5 Control.
These buttons are places in the header content of sap.m.Page
.
Nevertheless, sap.suite.ui.commons.ProcessFlow
provides zoomIn()
and zoomOut()
methods.
And coming to FullScreen
thing, you can use sap.m.SplitApp
with mode
as HideMode
.
P.S: Don't always go with screenshots. They could be jazzy and for demo purpose only.
Disclaimer: All opinions are personal. I don't talk on behalf of any employer.
Upvotes: 1