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

While usimn

1 Answer 27 Views
Dock
This is a migrated thread and some comments may be shown as answers.
Nithya Rani
Top achievements
Rank 1
Nithya Rani asked on 20 Feb 2012, 07:25 AM
Hi

I was using the nested rad dock concept. If i click the button one rad dock will open. inside that rad grid i was calling another rad dock during the button click. When the second rad dock is opened, i should not move to the 1 rad dock, until the 2 rad dock close.Bellow is my code.

 <telerik:RadWindowManager ID="RadWindowManager1" ShowContentDuringLoad="false" VisibleStatusbar="false"
       CssClass="windowCSS" IconUrl="~/images/workstation.ico" Behaviors="Close, Move, Minimize"
        ReloadOnShow="true" runat="server" EnableShadow="true">
        <Windows>
            <telerik:RadWindow ID="radwindowsubpopup" runat="server" OnClientClose="OnClientClose"
                AutoSize="true">
            </telerik:RadWindow>
            <telerik:RadWindow ID="radwindowpopup" runat="server" OnClientClose="OnClientClose"
                AutoSize="true">
            </telerik:RadWindow>
        </Windows>
    </telerik:RadWindowManager>

During the button Click code is bellow

 function CallLookup(controlID, controlDescriptionID, popupName) {
            var oWnd = radopen(popupName + ".aspx?subpopup=false&controlID=" + controlID + "&controlDescriptionID=" + controlDescriptionID + "", "radwindowpopup");
        }

1 Answer, 1 is accepted

Sort by
0
Slav
Telerik team
answered on 22 Feb 2012, 04:55 PM
Hello Nithya,

Please provide a more detailed description of the scenario that you want to implement, since currently I am mostly guessing as to what your desired setup is. Where is the RadGrid placed? Is the clicked button in the RadGrid? Where should the two RadDock controls be created?

Also, in the presented code sample there are not any RadDock controls. Have you already implemented the functionality, described in your post and if you have, what are the exact dufficulties that you have encountered?

As it is possible that you want to use the RadDock controls as windows with modality, I would suggest checking if this is the functionality that you want to achieve and if the RadWindow control is more suitable for the current scenario, as you have already utilized it in your project, judging by the code samples.

I am looking forward to your update on the case.

Regards,
Slav
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
Tags
Dock
Asked by
Nithya Rani
Top achievements
Rank 1
Answers by
Slav
Telerik team
Share this question
or