How do I Add or Remove Tab Pages to a Tab Panel at run-time?
I tried:
The items count went up, but the new tab page icon does not show up on the tab bar.Code:var tp = bNimble.tabpanel; var ct = tp.items.items.length; var tpg = tp.add({ title: 'Contact ' + ct, iconCls: 'user ' + ct, html: 'Contact Screen ' + ct });
Adding tpg.show(); did not help.
Thanks
David