AUTHOR: Peter Milchev
DATE POSTED: January 29, 2019
When the RadioButtonListItem's text is longer than the listbox' width, the radio button icon is on a separate row.
Setting the width of the item's text to be a few pixels less than its original 100% width fixes the issue:
<style>
.RadRadioButtonList.rbVerticalList .rbRadioButton .rbText {
width
: calc(
100%
-
21px
);
}
</style>
<
telerik:RadRadioButtonList
runat
=
"server"
ID
"RadCheckBoxList1"
>
Items
telerik:ButtonListItem
Text
"Option 1"
/>
"Option 2Option 2Option 2Option 2Option 2Option 2Option 2Option 2Option 2"
"Option 3"
"Option 4"
"Option 5"
</
Resources Buy Try