up vote 6 down vote favorite
share [g+] share [fb]

I see there are lot's of examples in extjs where instead of actually creating extjs objects, an object literal with an xtype property is passed in.

What is this good for? Where is the performance gain (if that's the reason) if the object is going to be created anyway?

link|improve this question

feedback

4 Answers

up vote 15 down vote accepted

xtype is a shorthand way to identify particular components: 'panel' = Ext.Panel, 'textfield' = Ext.form.TextField, etc. When you create a page or a form, you may use these xtypes rather than instantiate objects. For example,

items: [{
   xtype: 'textfield',
   autoWidth: true,
   fieldLabel: 'something'
}]

Moreover, creating pages in this manner allows ExtJS to render lazily the page. This is where you see a "performance gain." Instead of creating a large number of components when the app loads, ExtJS renders components when the user needs to see them. Not a big deal if you have one page, but if you exploit tabs or an accordion, many pages are initially hidden and therefore the app will load more quickly.

Furthermore, you may create and register new components creating xtypes of your choosing. ExtJS will similarly render your components lazily.

You may also retrieve components by ID. Since your component (as well as the ExtJS components) may provide a bunch of nice behavior, it is sometimes convenient to search for and retrieve a component rather than a simple DOM element or node.

In short, xtypes identify components and components are a key aspect of ExtJS.

link|improve this answer
I think you may have created a false dichotomy when you say that "instead of creating a large number of components when the app loads". I'm very curious to know whether or not you think that there is no other way to instantiate a component when it's needed and then destroy it when it's not. – RibaldEddie Feb 24 '10 at 7:06
you might want to mention how you refer to an alias using widget() or ComponentQuery() – el chief Oct 23 '11 at 20:59
feedback

xtypes in ext is not for performance. It is for easy to code. With help of xtype code becomes shorter, easy to read and understand, Especially if you are creating a Ext.form.FormPanel and it has many textareas, datefields, combos and so on... For example: it is useful when every datefield of form must have format like 'd.m.Y', you do not need to write separately format: 'd.m.Y' to every datefield, you just write to form config object defaults:{format:'d.m.Y'} ... there is many case when xtype shorters the code...

In conclusion: it is for easy to code...

link|improve this answer
1  
forgot about lazy rendering. "Upper Stage" explained it well. – Zango Feb 23 '10 at 13:48
2  
xtypes are more about performance and less about ease of coding: but they do lead to a more config-driven assembly of components, rather than the explicit (and ugly) "create-an-object in a var" approach. – Jonathan Julian Feb 23 '10 at 14:27
1  
Yeah, the statement "xtype is not for performance" is just plain wrong. That's one of the primary purposes of it. – bmoeskau Feb 25 '10 at 3:42
feedback

I asked the same question as Joe, but I found the answer. If you use xtype, one approach is to also specify an itemId in the same object:

{ itemId: 'myObject', xtype: 'myClass' ... }

Then you can find it with 'getComponent()', as in

this.getComponent('myObject');
link|improve this answer
feedback

An xtype is simply a name given to represent a class. It is a definition object which don't need to be instantiated when used in any part of application.

While registering a xtype, we simply use this syntax : Ext.reg(,). But, we don't use the 'new' keyword with the class name because the Component Mgr will automatically create instance of this class only if needed eg. in response to an event like click.

We don't need to get an instance manually because after registering an xtype, the 'Component Mgr' will automatically create an instance for the class represtented by that xtype only if it is used anywhere in the application or it simply don't instantiate that class if not used elsewhere. Component Mgr runs this code:

create : function(config, defaultType){
    return new types[config.xtype || defaultType](config);
}

xtype don't instantiate the class when Ext.Ready runs. But, new Ext.Container() will create all instances when Ext.Ready runs. So, using xtype is intelligent for large applications to get rid of garbage objects.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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