I like to add textfields in my formpanel where the contents to fields will be added dynamically ,so I want the fields to resize automatically in both (width and height). I have tried the "grow:true" property in "textfield" but only the width get increased. Any suggestions to resize on both width as well as height.
items = [
{
xtype: 'textfield',
fieldLabel: 'DataValue',
name: 'dataValue',
grow: true,
growMax: 500
}]
Thanks in advance.