Declined
Last Updated: 21 Mar 2014 16:54 by ADMIN
ADMIN
Marin Bratanov
Created on: 19 Sep 2012 07:38
Category: Window
Type: Feature Request
4
ADD ShowOnTopWhenModal property for the RadWindow (similar to ShowOnTopWhenMaximized)
A ShowOnTopWhenModal property would have the effect that any modal RadWindow (Modal=true) will increase greatly its z-index, just like it does when it is maximized. This property should take precedence over a maximized RadWindow (i.e. it should increase the z-index to more than 100 000).

A possible workaround:

<style>
    .topWindow {
        z-index: 100001 !important;
    }
</style>

for a markup of:
<telerik:RadWindow ID="topWindow" runat="server"
    Width="500"
    Height="300"
    VisibleOnPageLoad="true"
    CssClass="topWindow"
    Modal="true"></telerik:RadWindow>
1 comment
ADMIN
Niko
Posted on: 21 Mar 2014 16:50
Generally speaking a modal window is either open and on top of everything or closed and not visible. In that respect ShowOnTopWhenModal=”false” makes no sense. Therefore I cannot see a benefit of using a property that would control such a behavior of the RadWindow control. What am I missing?