Reputation: 207
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
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
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