Hi,
how I can I set the z-Index of the RadWindow? It starts at 3000 and increases when moving the window.
I need to have it starting at about 300.
How can I achieve that?
In the RadWindow's OnClientShowMethod I do this:
But the z-index starts at 3000 anyway.
How can I set the z-index by myself?
how I can I set the z-Index of the RadWindow? It starts at 3000 and increases when moving the window.
I need to have it starting at about 300.
How can I achieve that?
In the RadWindow's OnClientShowMethod I do this:
var id = sender.get_id();var windowDiv = $(".RadWindow[id$='" + id + "']");windowDiv.css('z-index', 500);How can I set the z-index by myself?