I do have situation when I need refresh or re-layout components inside container.
How to do that?
I do have situation when I need refresh or re-layout components inside container.
How to do that?
When you add or remove an item it will insert/remove the DOM elements and since the layouts are CSS the browser takes care of it all. Therefore you don't need to
Mitchell Simoens @LikelyMitch
Modus Create, Senior Frontend Engineer
________________
Need any sort of Ext JS help? Modus Create is here to help!
Check out my GitHub:
https://github.com/mitchellsimoens
I woul think the same,
but when I do something like this:
this.getConnectView().hide();
this.getDisconnectView().show();
where Connect and Disconnect views, appears to be that some pieces of the screen are no rendered, I either need to touch the screen or connect to the page via inspector and just look at those elements and everything re renders properly......
That would be a browser issue then.
Mitchell Simoens @LikelyMitch
Modus Create, Senior Frontend Engineer
________________
Need any sort of Ext JS help? Modus Create is here to help!
Check out my GitHub:
https://github.com/mitchellsimoens
Yes, I believe it is,
Adding:
document.body.appendChild(document.createTextNode('dude!'));
Fixing the problem....