dev
dev

Reputation: 207

Ext.grid.Panel xtype ExtJs 4

What's the xtype of Ext.grid.Panel. Also please tell me how can i find the xtype of any class.

Thanks

Upvotes: 2

Views: 11015

Answers (2)

Sasha Brocato
Sasha Brocato

Reputation: 673

You can also call the getXType() method on any Extjs 4 component. This will return the string that represents the component xtype.

Upvotes: 0

user800014
user800014

Reputation:

You can see the xtype in the online documentation, it appears with the name of the class in the title. In your case Ext.grid.panel use the xtype gridpanel.

Upvotes: 3

Related Questions