I tried the chrome dev channel (19.0.1061.1) with the extjs 4.1 2012-03-11 nightly build and the problem with the toolbar buttons randomly disappearing is still present... it seems to happen less frequently though...
I'll try to find some time around the end of the week and try to dig in to see what could be going on...
The charts legends are rendered correctly though....
After playing a little bit with the RC1 build, I can see the problems still there. Toolbars, tabs and grid columns still with the same weird and random behavior
So it started happening to me and when it did I inspected the DOM. The elements are still there and still laid our properly but they are just hidden. No CSS style hidden but just oddly hidden. Since they are still there and not CSS hidden, Ext JS has no involvement for what I am seeing.
I've also experienced this issue. When I run my project using 4.0.7 in Chrome 19 I have never seen this issue come up. I have only seen it when using 4.1 and Chrome 19. However, I haven't given it any thought considering neither is final at this point...
Here is the same. Randomly, components disappear. What happens is that after some layout calculations, the width of the container element is changed to 0.
With some time I will try figure out from where the wrong width come - if it was some wrong calc, some ordering issue, a chrome error, etc...
I don't know why yet, but I think I can reproduce the problem.
I've noted that it was happening when my app is changing some text after the page is fully rendered.
Workflow of my app:
1 - render viewport and a lot of views
2 - load some stores
3 - change some labels with the store content <<---- here the things disappear...
So, I created a little test case. I took some code of my app and I changed it to be simple, but kept some components. And just put a delayed callback to change the same label..... And I still couldn't reproduce the problem... But when I duplicate the code to change the label, voilá - the tab bar were gone!!!
I've attached my test case. The tab bar disappears after 1 sec (setTimeout callback...).
I will try others test cases. Maybe my code is just plain wrong.