- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- 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 Articles
- Assign image source dynamically in XML View in Fiori app in SAP UI5
- How to place UI5 code in SAP NetWeaver Server?
- How to fetch only N rows at a time in MySQL?
- Loading External Libraries in SAP UI5
- Sorting List in SAP UI5 project
- Binding model to sap.ui.core in SAP UI5 application
- Using Time subtype of an attribute view in SAP HANA
- How to show multiple Canvases at the same time in Tkinter?
- Managing user sessions in SAP UI5 application
- Binding OData service to SAP UI5 table
- 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 show shaking / wobble view animation in android?
- How to determine the size of an android view at run time?
- Grant a user permission to only view a MySQL view?

Advertisements