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

Text on left side

3 Answers 523 Views
CheckBox
This is a migrated thread and some comments may be shown as answers.
Stefania
Top achievements
Rank 2
Stefania asked on 07 Oct 2016, 12:51 PM

Hi,

is it possible to show the checkbox text on the left side of the checkbox?

<telerik:RadCheckBox runat="server" ID="CloneTripOppositeCheckBox" RenderMode="Lightweight"  Text="label_checkbox" TEXTPOSITION="LEFT"
></telerik:RadCheckBox>

Thank you

3 Answers, 1 is accepted

Sort by
0
Loïc
Top achievements
Rank 1
answered on 10 Oct 2016, 01:22 PM

Hi Stefania!

An other solution could be :

<telerik:RadLabel runat="server" AssociatedControlID="CloneTripOppositeCheckBox" Text="label_checkbox"></telerik:RadLabel>
 
<telerik:RadCheckBox runat="server" ID="CloneTripOppositeCheckBox" RenderMode="Lightweight" ></telerik:RadCheckBox>

0
Accepted
Vessy
Telerik team
answered on 10 Oct 2016, 04:44 PM
Hi Stefania,

In addition to the Loïc's reply, you can also consider using the Checkbox control into RTL direction:
<style type="text/css">
    .checkRtl {
        direction: rtl;
    }
</style>

<telerik:RadCheckBox runat="server" ID="CloneTripOppositeCheckBox" RenderMode="Lightweight" Text="label_checkbox" CssClass="checkRtl">
</telerik:RadCheckBox>


Regards,
Vessy
Telerik by Progress
Do you need help with upgrading your ASP.NET AJAX, WPF or WinForms projects? Check the Telerik API Analyzer and share your thoughts.
0
Charles
Top achievements
Rank 1
Iron
Iron
Iron
answered on 14 Jun 2022, 04:26 PM
You can also use the standard asp:checkbox which has that ability built in.
Tags
CheckBox
Asked by
Stefania
Top achievements
Rank 2
Answers by
Loïc
Top achievements
Rank 1
Vessy
Telerik team
Charles
Top achievements
Rank 1
Iron
Iron
Iron
Share this question
or