is there are any way to disable all child items on Extjs4 tab panel, without looping them.

my code:

var myPanel = new Ext.TabPanel({
    region: 'east',
    title: 'my panel title',
    width: 200,
    id: 'my-panel',
    split: true,
    collapsible: true,
    collapsed: true,
    floatable: true,
    xtype: 'tabpanel',
    items: [
        Ext.create('Ext.panel.Panel', {
        id: 'my-detail-panel',
        title: 'My Info',
        autoScroll: true,
        file: false,
        type: 'vbox',
        align: 'stretch',
        tpl: myDetailsTpl
    }),
        Ext.create('Ext.panel.Panel', {
        id: 'my-more-detail-panel',
        title: 'My more info',
        autoScroll: true,
        file: false,
        type: 'vbox',
        align: 'stretch',
        tpl: myMoreDetailsTpl
    })
            ]
});

i need disable myPanel's all child items, but still need to 'myPanel' keep status as enable .

link|improve this question

67% accept rate
feedback

2 Answers

up vote 0 down vote accepted
myPanel.items.each(function(c){c.disable();})

then

myPanel.items.each(function(c){c.enable();})

to fire them back up again.

That's iterating (not looping), right?

link|improve this answer
thank you, that make sense. – jeewiya Jan 11 at 10:13
1  
wait what? How is iterating not looping? :) The real answer here is NO there is not a disableAll function but obviously you can write one like Geronimo has shown. – DmitryB Jan 11 at 20:41
+1 Your right @DmitryB, I just assumed he meant without using a "for each" loop or something. I didn't know if anyone would catch that, so I wrote the question at the end – Geronimo Jan 11 at 21:28
feedback

You can just set disabled:true on the initial config for each panel. Is that what you were asking?

link|improve this answer
No ,what I need is dynamically enable or disable all items in tabpanel. – jeewiya Jan 11 at 9:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.