Hi Andy,
You can easily change the default z-index for all Q.Window instances
by overwriting the css.
Just add this code after initializing Q:
this.addCss("div.q-window", "z-index:10 !important;");
For the subclasses Q.Alert, Q.Confirm and Q.Prompt you might want to
add this as well:
this.addCss("div.q-window-blocking", "z-index:10 !important;");
In fact you can control a lot through the dynamic stylesheet system in
Q.
Greeting,
Wout