Is there an easy way to make the RadToolBarSplitButton look/act like a regular RadToolBarButton when one of its items are selected? I want to use a couple of RadToolBarSplitButtons with a RadToolBarButton and be able to have it act and look like I'm using three RadToolBarButtons that are in the same group. I have them unchecking the RadToolBarButton when on of the SplitBarButtons are selected, but the RadToolBarSplitButtons don't look "selected" like the regular tool bar buttons when they are pressed.
Here is what I have.
<telerik:RadToolBar runat="server" style="display:block; float: none" Skin="WebBlue" ID="tbInventory"> |
<Items> |
<telerik:RadToolBarButton Group="Inventory" CheckOnClick="true" Text="Pending"></telerik:RadToolBarButton> |
<telerik:RadToolBarButton IsSeparator="true"></telerik:RadToolBarButton> |
<telerik:RadToolBarSplitButton > |
<Buttons> |
<telerik:RadToolBarButton Group="Inventory" CheckOnClick="true" Text="Sold: Last 30 Days"></telerik:RadToolBarButton> |
<telerik:RadToolBarButton Group="Inventory" CheckOnClick="true" Text="Sold: Last 60 Days"></telerik:RadToolBarButton> |
<telerik:RadToolBarButton Group="Inventory" CheckOnClick="true" Text="Sold: Last 90 Days"></telerik:RadToolBarButton> |
</Buttons> |
</telerik:RadToolBarSplitButton> |
<telerik:RadToolBarButton IsSeparator="true"></telerik:RadToolBarButton> |
<telerik:RadToolBarSplitButton> |
<Buttons> |
<telerik:RadToolBarButton Group="Inventory" CheckOnClick="true" Text="For Sale"></telerik:RadToolBarButton> |
<telerik:RadToolBarButton Group="Inventory" CheckOnClick="true" Text="For Sale: Not At TDA"></telerik:RadToolBarButton> |
<telerik:RadToolBarButton Group="Inventory" CheckOnClick="true" Text="For Sale: Not Listed"></telerik:RadToolBarButton> |
</Buttons> |
</telerik:RadToolBarSplitButton> |
</Items> |
</telerik:RadToolBar> |
Any ideas?
Doug