In multiview, is there any where to find out the previous displayed view?. I can able to go back using back(), but would like to read some data from previous view. How to do it?
The multiview has a possibility to track the history of the tabs switching via
webix.history.track(‘tabbarID’);
Please check the following article: http://docs.webix.com/desktop__history_track.html
Also, you can store the IDs from theonViewChange(prevID, nextID)
event.
Thank you. I found onViewChange, does not return any IDs from the documentation. http://docs.webix.com/api__ui.multiview_onviewchange_event.html
Will it return prevID and nextID?
It will. We’ll add this information to the docs, sorry for incorrectness.