I have a Form with TextFields which I wish to hide, but the fieldLabel remains visible.
andCode:frmEnquiryEdit = new Ext.form.FormPanel({ id: 'frmEnquiryEdit', ... items: [ { xtype: 'datefield', id: 'edit_instruction_date', format: 'd/m/Y', fieldLabel: 'Instruction Date', name: 'instruction_date', hideParent: true }, ... ] });
any ideas anyone?Code:Ext.getCmp('edit_instruction_date').hide()