Hi,
I have a problem with RadToolBarButton configured as Check button. Indeed, I've tried to put, in the same toolbar, two RadToolBarButton with the following attributes for each of them :
CheckOnClick="true"
Checked="true"
AllowSelfUncheck="true"
Here is the code:
<telerik:RadToolBar ID="curveToolBar1" Runat="server">
<CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation>
<Items>
<telerik:RadToolBarButton runat="server" ImageUrl="~/SU/Images/Legend.png" CheckOnClick="true"
Checked="true" AllowSelfUncheck="true" Value="2">
</telerik:RadToolBarButton>
<telerik:RadToolBarButton runat="server" ImageUrl="~/SU/Images/Labels.png" CheckOnClick="true"
Checked="true" AllowSelfUncheck="true" Value="3">
</telerik:RadToolBarButton>
</Items>
</telerik:RadToolBar>
As a result, I can't get both buttons checked as the same time ! It works like toggle buttons !
How can I have the two buttons checked as the same time ?
Thanks in advance.
I have a problem with RadToolBarButton configured as Check button. Indeed, I've tried to put, in the same toolbar, two RadToolBarButton with the following attributes for each of them :
CheckOnClick="true"
Checked="true"
AllowSelfUncheck="true"
Here is the code:
<telerik:RadToolBar ID="curveToolBar1" Runat="server">
<CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation>
<Items>
<telerik:RadToolBarButton runat="server" ImageUrl="~/SU/Images/Legend.png" CheckOnClick="true"
Checked="true" AllowSelfUncheck="true" Value="2">
</telerik:RadToolBarButton>
<telerik:RadToolBarButton runat="server" ImageUrl="~/SU/Images/Labels.png" CheckOnClick="true"
Checked="true" AllowSelfUncheck="true" Value="3">
</telerik:RadToolBarButton>
</Items>
</telerik:RadToolBar>
As a result, I can't get both buttons checked as the same time ! It works like toggle buttons !
How can I have the two buttons checked as the same time ?
Thanks in advance.