Sentencetedder helped me, but in itself did not solve the problem that I encountered: adding one Ext.draw.Component, I got an empty panel. The curious part: the panel looked white, but the DOM components were there, and I could test them using, for example, the Chrome Developer Tools.
I started working using a workaround. I added these 2 instructions after the call this.add(component):
this.setVisible(false);
this.setVisible(true);
Hiding the panel, and then its visibility again, in some obscure way, performs the task.
source
share