I have a text field and a displayfield. I want the user value of the text field to displayed in the display field. how do i do that?
My code is as follows:
{
xtype: 'textfield',
fieldLabel: 'Textfield',
allowblank: false
}, {
xtype: 'displayfield',
fieldLabel: 'Textfield Value',
value: 'textfieldValue'
}