Hi,
I am using the telerik controls version: 2012.1.411.40 Runtime Version: v4.0.30319. I am laying out a very simple RadTextBox where TextMode="Multiline" as shown in the codes sample below. For some reason, only in IE 11, IE 10, and IE 9 (works in IE 8, Chrome and Firefox) the Wrap="True" is completely ignored. Instead IE is attaching a horizontal scroll bar every time. Any ideas how to correct this? I've attached some images of the rendering in IE 11. I've also attached the CSS code block in case the CSS is causing an issue, but I can't see how, it's very minimal.
CSS in case it helps
.DetailsLabel {
width:117px;
display: inline-block;
}
.right-column-controls{
width: 418px;
display:inline-block;
vertical-align:top;
}
.right-column-item {
padding-top: 20px;
width:400px;
}
<
div
class
=
"right-column-item"
>
<
asp:Label
ID
=
"lblBoundaryDescriptionLabel"
runat
=
"server"
CssClass
=
"DetailsLabel"
>Boundary Description:</
asp:Label
>
<
telerik:RadTextBox
ID
=
"rtxtBoundaryDescription"
TextMode
=
"MultiLine"
MaxLength
=
"1000"
Wrap
=
"True"
Columns
=
"18"
Rows
=
"5"
runat
=
"server"
Enabled
=
"false"
/>
</
div
>