I have created a tabstrip and have placed four tabs under it which is working fine.
How to create a tabstrip under each tab..suppose I want a tabstrip under tab "Analysis" and for other three tabs. what should be the approach. Anyone help me ...
tabstrip.view.js
var page1 = new sap.m.Page("p1",{title:"Main Page"});
var tabstrip1 = new sap.ui.commons.TabStrip("ts1",{
tabs:[
new sap.ui.commons.Tab("t1",{text:"Analysis"}),
new sap.ui.commons.Tab("t2",{text:"Data"}),
new sap.ui.commons.Tab("t3",{text:"Config"}),
new sap.ui.commons.Tab("t4",{text:"Admin"})
]
});
return page1;