Search code examples
javascriptextjsextjs4

getTargetEl().down('input') of textarea returns null


I'm working whith EXTJS, and i need to modify the style of xtype: 'textarea'. So what i'm using (which works perfectly for xtype: 'textfield') is this :

Ext.getCmp('idOfComponent').getTargetEl().down('input').setStyle('border-width', '0px');

The problem is that in the case of a textarea, this code : Ext.getCmp('id').getTargetEl().down('input') returns null. Any leads ?


Solution

  • You have to use .down('textarea') instead.