This is a migrated thread and some comments may be shown as answers.

[Solved] radDock displays when beneath radWindow

2 Answers 101 Views
Dock
This is a migrated thread and some comments may be shown as answers.
Scott Gibson
Top achievements
Rank 1
Scott Gibson asked on 03 Jul 2007, 05:53 PM
I using a radwindow as a popup.  When the popup is displayed, the raddock displays through the content of the radwindow.

Any solution?

2 Answers, 1 is accepted

Sort by
0
Petya
Telerik team
answered on 04 Jul 2007, 03:34 PM
Hello Scott Gibson,

I would offer the following solution:

<asp:scriptmanager id="ScriptManager1" runat="server">
        </asp:scriptmanager>
        <telerik:raddocklayout id="DockLayout" runat="server">
            <div>
                <telerik:raddockzone id="ZoneLeft" runat="server" minheight="200px" style="float: left;
                    margin-right: 10px;" width="45%">
                        <telerik:raddock onclientdockpositionchanged="OnClientDockPositionChanged"  id="RadDock1" runat="server" height="280px" title="Dock1" width="200px">
                    </telerik:raddock>
                </telerik:raddockzone>
            </div>
        </telerik:raddocklayout>
        <radw:radwindowmanager id="w" runat="server">
        </radw:radwindowmanager>
<input id="openWindow" onclick="OpenXAppProperties()" type="button" value="open" />

<script type="text/javascript">
        function OnClientDockPositionChanged(obj, args)
        {
            obj.get_element().style.zIndex = 2000;
        }
       
        function OpenXAppProperties()
        {
            var oManager = GetRadWindowManager();
            oManager.Open ("www.telerik.com", "RadWindow2");
        }
</script>

Let me know if this helps.

Greetings,
Petya
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
Scott Gibson
Top achievements
Rank 1
answered on 05 Jul 2007, 01:51 PM
Petya,

The provided solution seems to be working.

Thanks!
Tags
Dock
Asked by
Scott Gibson
Top achievements
Rank 1
Answers by
Petya
Telerik team
Scott Gibson
Top achievements
Rank 1
Share this question
or