This is a migrated thread and some comments may be shown as answers.

RadTextBox MultiLine & IE11

18 Answers 391 Views
Input
This is a migrated thread and some comments may be shown as answers.
John
Top achievements
Rank 1
John asked on 23 Oct 2013, 07:40 PM
We are using 2012 Q3 SP2.  

The problem I am seeing is that a RadText box that is multiline and disabled displays the text on a single line  with a horizontal scrollbar in IE11.  Is this fixed in a later version of the Telerik Controls?  It does work correctly with IE9, showing several lines of text with no horizontal scrollbar.

18 Answers, 1 is accepted

Sort by
0
Deyan Enchev
Telerik team
answered on 28 Oct 2013, 09:11 AM
Hello,

Thank you for reporting us this issue.
Currently, we are working on the known problems related to IE11 and will include the fixes in our upcoming release. RadControls will support officially IE11 from Q3 2013 SP1 release.

Regards,

Deyan Enchev
Telerik
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to the blog feed now.
0
Eric
Top achievements
Rank 1
answered on 15 Nov 2013, 01:19 PM
As something been done for that in 2013 SP1? I have 2013 SP1 and the problem is still there.
0
Deyan Enchev
Telerik team
answered on 15 Nov 2013, 04:30 PM

Hello Eric,

This problem is fixed in our 2013 Q3 SP1. Attached you can find a video file that I have recorded against a simple webpage. I am requesting this page from a Windows 8.1 machine that has IE11 browser.

In addition you can verify that this issue no longer replicates on our online demo Input – First Look.

Still if you experience this issue at your side could you send us small runnable project which we can further examine. This will let us get back to you with more straight to the point answers.

Regards,
Deyan Enchev
Telerik
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to the blog feed now.
0
Eric
Top achievements
Rank 1
answered on 15 Nov 2013, 07:15 PM
Thank you it's working. My mistake.
0
Eric
Top achievements
Rank 1
answered on 15 Nov 2013, 07:57 PM
In fact it now goes automatically to the next line but I can't go to a new line by pressing return anymore. It just add a space to my text.
0
Owen
Top achievements
Rank 1
answered on 16 Nov 2013, 12:36 AM
The online demo works because there is a separate input.css file that sets the .RadInput textarea CSS rule with a white-space: normal. I'm guessing this is what should be in my Webresource.axd. Why does my release not contain that attribute?

I am using Telerik RadControls for ASP.NET Ajax Q3 2013 version 2013.3.1015.40

Input.css on your live demo:
.RadInput textarea {
    vertical-align: bottom;
    overflow: auto;
    resize: none;
    white-space: normal;
}


Telerik.Web.UI Webresource.axd css rule:
.RadInput textarea {
    vertical-align: bottom;
    overflow: auto;
    resize: none;
}

My RadTextBox code:
<telerik:RadTextBox ID="OrderComment" runat="server" TextMode="MultiLine" MaxLength="2000" Width="470px" Height="250px" Resize="None" BackColor="#FFF9BD" />


Regards,
Owen
0
Cradz
Top achievements
Rank 1
answered on 18 Nov 2013, 07:11 PM
.RadInput textarea {
    white-space: pre !important;
}

CSS above fixed all issues for me even though I have the latest version and I do see the white-space: normal css.
0
Owen
Top achievements
Rank 1
answered on 18 Nov 2013, 09:44 PM
Well played. I get in after the weekend and there is an updated RadControls for AJAX Q3 2013 version 2013.3.1114.40 waiting to be downloaded. Now, white-space: normal is included in the WebResource.axd.

Thanks for the update, Telerik.

Regards,
Owen

EDIT: As described below by Shane, white-space:pre is required instead of white-space:normal as white-space:normal does not allow carriage returns in the multiline window. Thank you for the fix, Shane!
0
Tom O
Top achievements
Rank 1
answered on 21 Nov 2013, 04:20 PM
Another issue, that is also visible in the First Look demo - The enter button is not inserting carriage returns like it did in previous versions. It works fine in Chrome/Firefox.

It is saving correctly, but not displaying correctly before or after the save.

Do you have an ETA on a fix or temporary solution?
0
Shane Clay
Top achievements
Rank 1
answered on 23 Nov 2013, 04:39 AM
Tom,

Adding the following CSS works as a temporary solution:

.RadInput textarea { white-space: pre !important; } /* FIX - Enter key acting as a space in RadTextBox with MultiLine=True*/
0
Tom O
Top achievements
Rank 1
answered on 25 Nov 2013, 08:41 PM
thanks, that worked
0
Deyan Enchev
Telerik team
answered on 26 Nov 2013, 01:14 PM
Hi,

Our dev team provided a fix for this issue and the fix is part of our latest internal build. You can just download it from our site while logged in with your account or use the CSS below as a workaround.

Login to your account in our site and go to Products & Subscriptions –> Latest internal builds –> Select a product from the drop down (RadControls for ASP.NET AJAX). In the section of Available Downloads you should be able to see the latest one: Telerik.Web.UI_2013_3_1126_Dev_hotfix


Regards,
Deyan Enchev
Telerik
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to the blog feed now.
0
access
Top achievements
Rank 1
answered on 21 Jul 2014, 12:34 PM
Thanks.Its working.
0
mohd
Top achievements
Rank 1
answered on 22 May 2015, 11:31 AM

Hi All,

I have a textbox and mode as multiple line, When I am trying to add the text in my textbox field its keep adding in one line but its not wrapping.

Its working for me in Mozilla firefox and chrome but when I tried on IE 11 it’s all on one line and you have to click in the field and arrow across or scroll across to read everything.

 

Below is the aspx code which I am currently using for the textbox and am using version 2012.3.1308.3 , kindly update me if do we have any property which fix this issue in IE 11.

 

<tr>

                                <td align="left" valign="middle" class="panelStyle1">
                                    Comments:
                                </td>
                                <td align="left" valign="middle" class="panelStyle1">
                                   <radI:RadTextBox ID="txtComments" runat="server" tabIndex="7" Width="400px" Height="80px" Skin="SunSet" TextMode="MultiLine" MaxLength="250"  Font-Names="segoe ui" Font-Size="12px" BorderColor= "#938879" BorderWidth="1px" FocusedStyle-BackColor="LightYellow" >
                                    <ClientEvents OnKeyPress="textMaxLength" />
                                    </radI:RadTextBox></td>
                            </tr>

 

 

Thank you !

0
Deyan Enchev
Telerik team
answered on 27 May 2015, 08:43 AM
Hello,

Could you please verify that you are using our latest release?
I have tested the markup provided using it and was not able to find any issues with the content wrapping.

Thanks.

Regards,
Deyan Enchev
Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
0
mohd
Top achievements
Rank 1
answered on 28 May 2015, 06:36 AM

Hi Deyan,

 

Thanks for your reply, I have fixed the below issue with this code ..

 

  <tr>
                                <td align="left" valign="middle" class="panelStyle1">
                                    Comments:
                                </td>
                                <td align="left" valign="middle" class="panelStyle1">
                                   <radI:RadTextBox ID="txtComments" runat="server" tabIndex="7" Width="400px" Height="80px" Skin="SunSet"
                                    TextMode="MultiLine" MaxLength="250"  Font-Names="segoe ui" Font-Size="12px" BorderColor= "#938879" BorderWidth="1px" 
                                    FocusedStyle-BackColor="LightYellow" style="white-space: normal !important;">
                                    <ClientEvents OnKeyPress="textMaxLength" />
                                    </radI:RadTextBox></td>
                            </tr>

 

Thanks for your help

 

Moiz.

0
Raj
Top achievements
Rank 1
answered on 29 Mar 2016, 03:27 PM

.RadInput textarea {
    vertical-align: bottom;
    overflow: auto;    
    white-space: normal;
}

 

This fixes the issue in IE11

0
Maria Ilieva
Telerik team
answered on 01 Apr 2016, 08:25 AM
Hi,

Thank you for your inputs. I'm sure the provide approaches will be helpful for other members of the community.

Regards,
Maria Ilieva
Telerik
Do you need help with upgrading your ASP.NET AJAX, WPF or WinForms projects? Check the Telerik API Analyzer and share your thoughts.
Tags
Input
Asked by
John
Top achievements
Rank 1
Answers by
Deyan Enchev
Telerik team
Eric
Top achievements
Rank 1
Owen
Top achievements
Rank 1
Cradz
Top achievements
Rank 1
Tom O
Top achievements
Rank 1
Shane Clay
Top achievements
Rank 1
access
Top achievements
Rank 1
mohd
Top achievements
Rank 1
Raj
Top achievements
Rank 1
Maria Ilieva
Telerik team
Share this question
or