We have following TabSet definition:
Code:
isc.TabSet.create({
ID: mTabSet
});
Code:
isc.PortalLayout.create({
ID: mTab1
});
suppose we have following portlet definition
Code:
var lPortlet1 = isc.Portlet.create({
title: "portlet1",
src: "..... link 1 ......"
})
Code:
mTab1.addPortlet(lPortlet1, aColIndex, aRowIndex)
Code:
mTab1.addTab({
pane: mTab1
})
Thanks
Leave a comment: