I have several floating panels opened once together .The problem is that after they are opened, code opens one more panel and its zIndex is less than one of first opened panels. I understood from reading some posts that its better not to display several floating panels at once, but in my case I have no choice. Also I tried to put a hardcoded zIndex on all panels, but it created problems in other places like showing message...
Can you suggest? May be sencha has some function that brings to front my panel??
Managing z-Index doesn't work in my case since I have messages and other components displayed over laoyut... Finally I understood that floating panel should not be used at all in my case, in was used to create a layout structure that is wrong, so I removed top attribute and use now just style:'position:absolute;top:px'. Now everything works.