There seems to be a bug in the latest release 2016.1.113. We have RadButtons using the ToggleType of Radio and the ButtonType of StandardButton like so:
<
telerik:RadButton
ID
=
"rbCreditCardPresent"
runat
=
"server"
ToggleType
=
"Radio"
ButtonType
=
"StandardButton"
GroupName
=
"paymenttype"
ValidationGroup
=
"pospay"
AutoPostBack
=
"false"
Text
=
"CC - Present"
OnClientClicked
=
"CheckChanged"
CommandName
=
"Present"
Width
=
"125px"
>
Using version 2015.1.401 the width has always been properly displayed. After upgrading to 2016.1.113 it seems like the width if basically ignored. The buttons end up being the width of the text like in the attached image.
It seems like a workaround is to add a CSS class like the following, however that is kind of an annoyance and in Chrome this causes the text to dance around in the box when the page is loading. Is this truly a bug or am I missing something?
.wide input {
width
:
100%
!important
;
}