in a Extjs application I have a Grid and a Tabs line over it. Content of the Grid depends on the selected Tab. Say tabs has Jan-Feb-Mar-... values. Clicking of the Tab I would reload grid's store

Question: is it possible to avoid duplicating of the 12 grid components in favor to have one shared instance?

Thanks

Disclaimer: searching at the sencha's forum, google, stackoverflow was not successful :(

link|improve this question

60% accept rate
feedback

3 Answers

It is, but it would require more effort than it is worth. Just create a prototype for your component, so that you can create new instances really quickly.

link|improve this answer
Yes, this is an obvious way, but I'm thinking about non-greedy application. I'm afraid I have to insert too many tabs/grids that caused unnecessary resources wasting. – olegtaranenko Dec 20 '10 at 9:26
If you use lazy instantiation (usng Ext.reg() to register your classes as new xtypes), your grids will only be actualy created, when the tab is selected, so this will help a little. You could also resign from having twelve tabs all together, and instead use one panel with a dropdown (or other widget) to select months. – Mchl Dec 20 '10 at 10:26
feedback

I haven't tried this myself, but I imagine that you could create a TabPanel with empty tabs and size the TabPanel so that only the tab strip is visible. Under that (using the appropriate layout, border, vbox, etc.) create your GridPanel and use the TabPanel's activate event to reload the grid based on the currently-active tab.

link|improve this answer
feedback

Hope the following implementation meet your needs 1. Create your custom grid and register it 2. place it tab panel

As the grid is created using xtype, it would not create 12 instances when you change tabs.

 Application.PersonnelGrid = Ext.extend(Ext.grid.GridPanel, {
         border:false
        ,initComponent:function() {
            Ext.apply(this, {
                 store:new Ext.data.Store({...})
                ,columns:[{...}, {...}]
                ,plugins:[...]
                ,viewConfig:{forceFit:true}
                ,tbar:[...]
                ,bbar:[...]
            });

            Application.PersonnelGrid.superclass.initComponent.apply(this, arguments);
        } // eo function initComponent

        ,onRender:function() {
            this.store.load();

            Application.PersonnelGrid.superclass.onRender.apply(this, arguments);
        } // eo function onRender
    });

    Ext.reg('personnelgrid', Application.PersonnelGrid);

    var panel = new Ext.TabPanel({
                    items:[{  
                            title:'Jan', 
                            items: [{xtype:'personnelgrid'}]
                          }, { 
                            title: 'Feb', 
                            items: [{xtype:'personnelgrid'}]
                          }
                          ....
                           {
                             title: 'Dec',
                             items: [{xtype:'personnelgrid'}] 
                           }] 
                  }) 
link|improve this answer
shivashankar, thank you for the answer. On startup - you right, it will does not create no instances. It will create one later, the new clicked tab - the new gird's instance will be created. This is the same solution suggested by Mchl. – olegtaranenko Dec 31 '10 at 8:59
feedback

Your Answer

 
or
required, but never shown

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