Telerik Support,
I have Toolbar with some buttons. I have a toolbardropdown and toolbarsplitbutton, inside I have 2 buttons. Now when I select any one of them there should be a indication of which is selected, like a tick sign or something. I am not able to find any propery in toolbar out of box. Is there any property available to do so, or else how can we achive it ?
Below is the code for my toolbar.
Thanks,
Het
I have Toolbar with some buttons. I have a toolbardropdown and toolbarsplitbutton, inside I have 2 buttons. Now when I select any one of them there should be a indication of which is selected, like a tick sign or something. I am not able to find any propery in toolbar out of box. Is there any property available to do so, or else how can we achive it ?
Below is the code for my toolbar.
<telerik:RadToolBar ID="tbTopPage" runat="server" Skin="Office2007" Width="100%"> |
<CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation> |
<Items> |
<telerik:RadToolBarButton runat="server" Text="Collapse All"> |
</telerik:RadToolBarButton> |
<telerik:RadToolBarButton runat="server" IsSeparator="True" Text="Seperator1"> |
</telerik:RadToolBarButton> |
<telerik:RadToolBarSplitButton runat="server" Text="Relation" |
EnableDefaultButton="False"> |
<Buttons> |
<telerik:RadToolBarButton runat="server" CheckOnClick="True" |
Text="With Relation" ValidationGroup="Relation"> |
</telerik:RadToolBarButton> |
<telerik:RadToolBarButton runat="server" CheckOnClick="True" |
Text="Without Relation" Checked="True" ValidationGroup="Relation"> |
</telerik:RadToolBarButton> |
</Buttons> |
</telerik:RadToolBarSplitButton> |
<telerik:RadToolBarButton runat="server" IsSeparator="True" Text="Seperator2"> |
</telerik:RadToolBarButton> |
<telerik:RadToolBarDropDown runat="server" Text="View"> |
<Buttons> |
<telerik:RadToolBarButton runat="server" CheckOnClick="True" Group="View" |
Text="Summary"> |
</telerik:RadToolBarButton> |
<telerik:RadToolBarButton runat="server" CheckOnClick="True" Group="View" |
Text="Detail"> |
</telerik:RadToolBarButton> |
</Buttons> |
</telerik:RadToolBarDropDown> |
<telerik:RadToolBarButton runat="server" IsSeparator="True" Text="Seperator3"> |
</telerik:RadToolBarButton> |
<telerik:RadToolBarSplitButton runat="server" Text="Actions" |
EnableDefaultButton="False"> |
<Buttons> |
<telerik:RadToolBarButton runat="server" CheckOnClick="True" |
Text="Add to Basket"> |
</telerik:RadToolBarButton> |
<telerik:RadToolBarButton runat="server" CheckOnClick="True" |
Text="Maintenance Update"> |
</telerik:RadToolBarButton> |
</Buttons> |
</telerik:RadToolBarSplitButton> |
</Items> |
</telerik:RadToolBar> |
Thanks,
Het