-
26 Apr 2012 11:13 PM #1
TabConfig not shown for custom panels inside Tab Panel
TabConfig not shown for custom panels inside Tab Panel
If I use a custom panel inside a Tab Panel, it's not given the TabConfig option. This reduces the configurability of the tab considerably. One workaround is to wrap the custom panel in a standard panel, which will get the TabConfig.
Source:
And how it's shown in the Project Inspector:PHP Code:initComponent: function() {
var me = this;
Ext.applyIf(me, {
items: [
{
xtype: 'tabpanel',
activeTab: 0,
items: [
{
xtype: 'mainpanel',
title: 'Orders'
},
{
xtype: 'panel',
title: 'My Panel'
}
]
}
]
});
me.callParent(arguments);
}
tabpanel-bug.png
The normal "My Panel" gets the TabConfig, but my custom Orders panel doesn't.
--
Otto Chrons, CTO, Microtask Ltd.
Success! Looks like we've fixed this one. According to our records the fix was applied for
DSGNR-1825
in
Architect 2.1.


Reply With Quote