Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using Id and itemId in Extjs to access components

In ExtJs Best practices I gone through not to use Id for accessing Ext Components rather use ItemId, I am very new in accessing components using ItemID, does any one can help me in default syntax or the way to access components.

Also on click of yes in a message box I need to disable some components in masked page, whether this can be achieved with the help of ItemID? Please explain.

I feel when using ItemiD it may return array of elements/components, so if need to get an exact component I need to iterate again. I have this ques too....

like image 689
user1058913 Avatar asked Apr 02 '15 03:04

user1058913


People also ask

What is the benefit of using Itemid in Extjs?

When you use an id for a component, there must be a single instance of this component, If you create another instance that has the same id, you will have problems as the DOM is confused. when you use itemId, it should be unique only within the component's immediate container.

What is the benefit of using Itemid?

The itemid global attribute provides microdata in the form of a unique, global identifier of an item. An itemid attribute can only be specified for an element that has both itemscope and itemtype attributes.

What is initComponent in Extjs?

initComponent This method is invoked by the constructor. It is used to initialize data, set up configurations, and attach event handlers. beforeShow This method is invoked before the Component is shown. onShow Allows addition of behavior to the show operation.

What is autoEL in Extjs?

autoEL. The autoEl config option lets you customize the Element that will encapsulate the Component.


1 Answers

Basic difference between id and itemId is

When you use an id for a component, there must be a single instance of this component, If you create another instance that has the same id, you will have problems as the DOM is confused.

when you use itemId, it should be unique only within the component's immediate container.the component's container maintains a list of children ids.

so the best practice is to use itemId instead of id

now How to access?

if you use id

Ext.getCmp('id')

or

document.getElementById('id')

or

Ext.ComponentQuery.query("#id")[0]

if you use itemId

parentContainer.getComponent('child_itemId'),

refer following example

e.g

 var parentContainer= Ext.create('Ext.panel.Panel', {
         initComponent: function(){
            Ext.applyIf(me, {
               //childrens
               items: [{
                          xtype:'textfield',
                          itemId:'text'
                       },
                       {
                           xtype:'panel',
                           itemId:'childpanel',
                           items:[
                                 {
                                     xtype:'combobox',
                                     itemId:'combo'
                                 }
                           ]
                       }]
            });
            this.callParent(arguments);
        },
        renderTo:Ext.getBody()

    })

in above example

for accessing textfield use

parentContainer.getComponent('text');

for accessing combobox use

parentContainer.getComponent('childpanel').getComponent('combo');

or

Ext.ComponentQuery.query("#combo")[0];

this will return array of item with id combo in page for these you should use unique itemId so you will get the first item you are searching for

or

parentContainer.queryById('combo');

you can also use Ext.util.MixedCollection

        var fields = new Ext.util.MixedCollection();
        fields.addAll(parentContianer.query('[isFormField]'));
        var Combo = fields.get('combo');
like image 149
Sujan Thakare Avatar answered Sep 23 '22 19:09

Sujan Thakare