Hi
We have radbutton in one aspx and apply our own css style (external style sheet),if that page not contain RadRadioButtonList, our css can apply to radbutton, but if i add RadRadioButtonList in same page , then css not reflect for that radbutton.
This is radbutton
<telerik:RadButton CssClass="btn btn-success" EnableEmbeddedSkins="false" RenderMode="Lightweight" Primary="true" ID="RadButton1" runat="server" Text="RadButton"></telerik:RadButton>
This is radradiobuttonlist
<telerik:RadRadioButtonList ID="radListType" AutoPostBack="true" runat="server">
<Items>
<telerik:ButtonListItem Selected="true" Text ="Internal User" Value ="Internal User" />
<telerik:ButtonListItem Text ="External User" Value ="External User" />
</Items>
</telerik:RadRadioButtonList>
if i remove radradiobutton list screenshot : http://prntscr.com/s6ixau
if i add radradiobutton list screenshot : http://prntscr.com/s6ix3f
Pls reply asap,Same as some other page also css not reflect in radbutton, not sure which control affect this, for example i gave radbutton with radradiobuttonlist above.