Niklas Lindwall
Top achievements
Rank 1
Niklas Lindwall
asked on 01 Oct 2009, 12:55 PM
Hi,
In the latest version of radeditor(ASP.NET AJAX 2009.2 826) you can see in the version notes:
"Fixed: NewLineBr = false in FireFox does not work well in all scenarios"
I would like to know what scenarios is fixed?
I can't see any improvments on this issue.
We have same annoying problem with realy basic things as always (In FF).
And our problems is:
In the latest version of radeditor(ASP.NET AJAX 2009.2 826) you can see in the version notes:
"Fixed: NewLineBr = false in FireFox does not work well in all scenarios"
I would like to know what scenarios is fixed?
I can't see any improvments on this issue.
We have same annoying problem with realy basic things as always (In FF).
And our problems is:
- Inserting a picture last in the context and then hit enter removes the picture
- Writing some text last in the context. Mark the text and make a link.... Insert .... Hitting Enter will not "break" the link and we are now stuck in the link and there is no way out.
So I tried NewLineBr = true instead although this is not what we wan't.
But as this mode render different html in IE vs. FF this is not an option for us.
In IE you get the paragrahs as you expect after a heading, but not in FF.
Any Idea how we can get NewLineBr = false to work in FF?
Regards Niklas
5 Answers, 1 is accepted
0
Hi Niklas,
Straight to the points:
1) I was unable to reproduce the image deletion problem when the NewLineBr is set to false. I attached a video demonstrating my test. Am I missing something? Could you please send detailed steps and content on how to reproduce the problem on my end?
2) I was able to reproduce the link problem. Indeed, when you create a link and press enter then the paragraph is again linked. I logged the problem, notified our lead developer about it and we will try to fix it for future hotfix of the control.
I also updated your Telerik points for the bug report.
Best regards,
Rumen
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Straight to the points:
1) I was unable to reproduce the image deletion problem when the NewLineBr is set to false. I attached a video demonstrating my test. Am I missing something? Could you please send detailed steps and content on how to reproduce the problem on my end?
2) I was able to reproduce the link problem. Indeed, when you create a link and press enter then the paragraph is again linked. I logged the problem, notified our lead developer about it and we will try to fix it for future hotfix of the control.
I also updated your Telerik points for the bug report.
Best regards,
Rumen
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
Niklas Lindwall
Top achievements
Rank 1
answered on 07 Oct 2009, 09:59 AM
Hi Rumen,
Thanks for your reply.
In your demo you put text and image together and then everything works fine.
The problem only exist when the image (or any other object such as flash) is standalone in a paragrah.
So the easiest way to reproduce the bug is:
1.Click on the editor
2. Insert image
3. Hit return
I have also debugged the problem down to the "EnterParagrahMozilla" function:
The following lines is the problem:
Those line does seem a bit odd because in may case the textcontent is indeed empty but the innerHTML is not.
I tried to overwrite the function with:
This works better in my case. At least the image is still left, but I get a lot of empty paragrahs instead :(
I can't really see how that is connected but I probably don't get the whole picture.
I really would appreciate a solution to this because it's a pretty common scenario.
Regards Niklas
Thanks for your reply.
In your demo you put text and image together and then everything works fine.
The problem only exist when the image (or any other object such as flash) is standalone in a paragrah.
So the easiest way to reproduce the bug is:
1.Click on the editor
2. Insert image
3. Hit return
I have also debugged the problem down to the "EnterParagrahMozilla" function:
The following lines is the problem:
| if (!$telerik.getTextContent(newBlock)) |
| newBlock.innerHTML = " "; |
I tried to overwrite the function with:
| if (!newBlock.innerHTML) |
| newBlock.innerHTML = " "; |
I can't really see how that is connected but I probably don't get the whole picture.
I really would appreciate a solution to this because it's a pretty common scenario.
Regards Niklas
0
Hi Niklas,
Thank you for the detailed instruction which helped to reproduce the bug. I logged it to the bug tracking system and updated your points for reporting this problem. We will try to fix the issue in one of the upcoming hotfixes of RadControls for ASP.NET AJAX.
Best regards,
Rumen
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Thank you for the detailed instruction which helped to reproduce the bug. I logged it to the bug tracking system and updated your points for reporting this problem. We will try to fix the issue in one of the upcoming hotfixes of RadControls for ASP.NET AJAX.
Best regards,
Rumen
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
Niklas Lindwall
Top achievements
Rank 1
answered on 11 Mar 2010, 05:10 PM
Hi,
Is this bug fixed in the latest (2010.1 309) version.
Regards
Niklas
Is this bug fixed in the latest (2010.1 309) version.
Regards
Niklas
0
Hi Niklas,
This is a browser problem that appears when the content area of RadEditor is empty.
To fix it check on the server whether the content is empty and it is it, set as initial content a paragraph with a non breaking space in it, e.g.
RadEditor1.Content = "<p> </p>";
This will solve the issue.
Greetings,
Rumen
the Telerik team
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 Public Issue Tracking system and vote to affect the priority of the items.
This is a browser problem that appears when the content area of RadEditor is empty.
To fix it check on the server whether the content is empty and it is it, set as initial content a paragraph with a non breaking space in it, e.g.
RadEditor1.Content = "<p> </p>";
This will solve the issue.
Greetings,
Rumen
the Telerik team
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 Public Issue Tracking system and vote to affect the priority of the items.
