I've created two radio buttons
I want the second radbutton to be rendered with a radio button just the the first radbutton. But instead the entire contents of the content template is being rendered as an html anchor. Is there a way to use the radbutton to look like my attached mockup?
<
telerik:RadButton
ID
=
"rbOption1"
runat
=
"server"
Text
=
"option 1"
ToggleType
=
"Radio"
GroupName
=
"group1"
ButtonType
=
"ToggleButton"
/>
<
br
/>
<
telerik:RadButton
ID
=
"rbOption2"
runat
=
"server"
ToggleType
=
"Radio"
GroupName
=
"group1"
ButtonType
=
"ToggleButton"
>
<
ContentTemplate
>
<
asp:Label
ID
=
"lblChoose"
runat
=
"server"
Text
=
"choose"
/>
<
asp:DropDownList
ID
=
"ddlChoose"
runat
=
"server"
/>
</
ContentTemplate
>
</
telerik:RadButton
>
I want the second radbutton to be rendered with a radio button just the the first radbutton. But instead the entire contents of the content template is being rendered as an html anchor. Is there a way to use the radbutton to look like my attached mockup?