Как скрыть / показать дату компонента по событию нажатия кнопки в extjs?Я попытался сделать это с помощью методов hide () и show (), но он не работает для displayField моего компонента даты. То же самое произошло, когда я попытался с setvisible ().
// by using show() and hide()
Ext.getCmp('startDt').show(); // to show date field
Ext.getCmp('startDt').getEl().up('.x-form-composite').show(); // I removed this line cause it gives error
Ext.getCmp('startDt').hide(); // to hide date field
Ext.getCmp('startDt').getEl().up('.x-form-composite').hide(); // I removed this line cause it gives error
// by using setVisible()
Ext.getCmp('startDt').setVisible(true); // to show date field
Ext.getCmp('startDt').setVisible(false); // to hide date field