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

How to hide the RadDockZone ?

1 Answer 84 Views
Dock
This is a migrated thread and some comments may be shown as answers.
Shengpan Song
Top achievements
Rank 1
Shengpan Song asked on 11 Jul 2010, 04:59 AM
Hello ,telerik.

I design one page which includes many RadDockZones  having some RadDocks in one RadLayout.But When I add a RadCombobox which hides some RadDockZones according to some conditions ,and I set the Visible property of RadDockZone  from True to False.
I meet  question.The question is that the RadCombox   is disabled after I filter using the RadCombox secondly,the radcombox is always waiting. And firstly all is normal.
Please help me.

1 Answer, 1 is accepted

Sort by
0
Pero
Telerik team
answered on 14 Jul 2010, 12:02 PM
Hello Shengpan,

I am not sure that I fully understand your problem. Are the docking zones shown even though the Visible property is set to false, or is the problem related with the combobox? I tested the following code and everything seems to be OK:

<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<head id="Head1" runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <asp:ScriptManager ID="ScriptManager1" runat="server">
        <Scripts>
            <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.Core.js" />
        </Scripts>
    </asp:ScriptManager>
    <div>
        <telerik:RadDockLayout ID="RadDockLayout1" runat="server">
            <telerik:RadDockZone ID="RadDockZone1" runat="server" MinHeight="300px" Width="300px"
                Visible="false">
                <telerik:RadDock ID="RadDock1" runat="server" Title="RadDock-Title" Width="300px">
                    <ContentTemplate>
                        <br />
                        <br />
                        <br />
                        <br />
                        <br />
                        CONTENT
                        <br />
                        <br />
                        <br />
                        <br />
                        <br />
                    </ContentTemplate>
                </telerik:RadDock>
            </telerik:RadDockZone>
        </telerik:RadDockLayout>
    </div>
    </form>
</body>
</html>

Could you please sent us a sample code that demonstrates the issues and we will do our best to help you?

Best wishes,
Pero
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
Tags
Dock
Asked by
Shengpan Song
Top achievements
Rank 1
Answers by
Pero
Telerik team
Share this question
or