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

show a dropdown menu in the titlebar

1 Answer 68 Views
Dock
This is a migrated thread and some comments may be shown as answers.
MBEN
Top achievements
Rank 2
Veteran
MBEN asked on 19 Feb 2014, 11:26 PM
I am trying to create a portal type app with raddocks. On the title bar of the raddock I want to show a dropdown menu which the user can choose and navigate to a different page. can I just add a radmenu to the titlebar to achieve the functionality?

It will be great if you have an example to show a similar approach.

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 20 Feb 2014, 04:36 AM
Hi MBEN,

Please have a look into the sample code snippet which works fine at my end.

ASPX:
<telerik:RadDock ID="RadDock1" runat="server">
    <TitlebarTemplate>
        <telerik:RadMenu ID="RadMenu1" runat="server" Flow="Vertical" Height="1px">
            <Items>
                <telerik:RadMenuItem Text="Page1" NavigateUrl="AccessControlinsidediv.aspx">
                </telerik:RadMenuItem>
                <telerik:RadMenuItem Text="Page2" NavigateUrl="AddIteminDock.aspx">
                </telerik:RadMenuItem>
            </Items>
        </telerik:RadMenu>
    </TitlebarTemplate>
</telerik:RadDock>

Let me know if you have any concern.
Thanks,
Shinu.
Tags
Dock
Asked by
MBEN
Top achievements
Rank 2
Veteran
Answers by
Shinu
Top achievements
Rank 2
Share this question
or