items: [
{
xtype: 'textareafield',
label: 'references',
items: [{
xtype:'textareafield',
}
]
}]
I want to create a textarea field inside a textarea, but it’s displaying only one textareafield and not showing inner textareafield.
itemsconfig does not work here as it’s not available toExt.field, trycomponentconfig instead, something like this:P/S: Behine the scene, Sencha Touch 2 sets
componentconfig to{xtype: "textareainput"}by default, so with this method, you can insert whatever you want, such as buttons, and so on.