Has anyone done this before? I would most appreciate any input as to how I can go about using carriage returns within a grid cell.
12 Answers, 1 is accepted
We are currently working on a solution and I will notify you once it is ready.
Thanks for reporting this problem. I have updated your telerik points.
Kind regards,
Milan
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
The problem is fixed and now you should be able to use carrage return when editing.
I have attached the latest trial binaries that include the editing fix.
Could you confirm that the problem is fixed?
All the best,
Milan
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
How to swap latest trial binaries?
gr8 support.
Thanks
Regards,
Manas
You should replace all dlls that you are referencing in your project with new ones since their version is different from the old ones. I guess you should also replace Telerik.Windows.Data and Telerik.Windows.Input dlls.
Do not hesitate to write if you run into more problems.
Best wishes,
Milan
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
I am sorry for late response on this issue, I was working on telerik trial version that time carriage return was working fine, now we have purchased telerik version. Right now it is working on QA server, if I again change DLL s , that you provided for carriage return, product will show trial version on application.
I would be obliged if you give me a quick response.
Regards,
Manas
If you use the binaries that I have sent you a trial message will be display. Foretunately the carriage return fix is now available in our latest internal builds, which you can access from our download page.
Once you visit the download page there will be a link "Latest Internal Builds" for our Silverlight control. The latest internal build is called RadControls_for_Silverlight_2009_1_612. Since you have purchased our Silverlight suite you will be able to download the Dev version which does not have trial messages.
Regards,
Milan
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
Do I need any setting into properties or any thing?
It is very urgent Milan, Thanks
Regards,
Manas
Sorry I have sent it from different Account.
After Changed all dlls application is running fine. But I not getting Carriage Return after press <Enter>, <Shift+Enter> and <Ctr + Enter> in Grid Cell After allow TextWarpping=warp.
Do I need any setting into properties or any thing?
It is very urgent Milan, Thanks
Regards,
Manas
I have created a column with a TextBox that allows carrage returns and has wrapping enabled and everything is working fine. I am sending you my application. Can you reproduce the problem?
How do you define your multiline editor?
Regards,
Milan
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
Thanks for gr8 support from your end.
Now Carriage Return is woking cool with "RadControls_for_Silverlight_2009_1_612" version binaries.
Regards,
Manas
I am glad that everything is working fine now.
Regards,
Milan
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
Its check each character’s ASCII value entered into the textbox, so when the enter key is pressed its also check the ASCII value and then it avoid to insert the carriage return value to the textbox. So we can avoid to insert Carriage Return into the textbox having “ Multiline” TextMode property or in TextArea control. |
<asp:TextBox ID="txtComments" Height="150" Columns="200"TextMode="multiline" MaxLength="4000" runat="server"onkeydown = "return (event.keyCode!=13);" /> Note: ASCII value for Enter Key is 13.
|