

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to show only one view at a time in Wizard in SAP UI5?
I will say not it is not a big out of box requirement. You can easily get it done. What you need to do is to hook up your requirement in the complete event of the wizard which gets invoked on each step completion. You just need to hide the completed view and show the next view. So you will be viewing only one view at a time.
onComplete: function(oEvent) { var wdStep = oEvent.getSource(); wdStep.setVisible(false); }
- Related Questions & Answers
- How to fetch only N rows at a time in MySQL?
- Assign image source dynamically in XML View in Fiori app in SAP UI5
- How to show multiple Canvases at the same time in Tkinter?
- How to sort more than one column at a time in MySQL?
- How to select one item at a time from JCheckBox in Java?
- How to place UI5 code in SAP NetWeaver Server?
- Sorting List in SAP UI5 project
- Loading External Libraries in SAP UI5
- Show/view indexes in a MySQL Database
- Binding model to sap.ui.core in SAP UI5 application
- MySQL query to select rows one batch at a time
- Grant a user permission to only view a MySQL view?
- How to determine the size of an android view at run time?
- How to show shaking / wobble view animation in android?
- Using Time subtype of an attribute view in SAP HANA
Advertisements