ExtJS. Hide all components within a container

前端 未结 3 1944
一个人的身影
一个人的身影 2021-01-06 13:39

I have a window in which I am rendering a number of components like panels etc.

Is there a way I can hide all the components contained in window without having to hi

3条回答
  •  日久生厌
    2021-01-06 14:16

    Try setting style for your container

    Ext.get('myWindow').setStyle('display','none');
    

提交回复
热议问题