Hello,
We are developing SAPUI5 application with Master & Detail page pattern. On detail page, we have 7 tabs so to make it more manageable we have created 7 different views, one for each tab instead of writing all the code in one view. And one extra view which hold the tab and 7 views.
Now code is easy to maintain as we can go to specific view and do the changes instead of searching in one big view. But there is a new problem now, it take lot of time to load the detail section. It makes separate server call to load each view. Earlier it was loading detail section with one server round trip but now it is making 8 server round trips ( one for every view ).
So the question is, is there any way to load multiple views in single server trip?
Regards,
Vikram