| && uploadFolder[uploadPath.Length] == pathSeparator |
| && uploadFolder[uploadPath.Length -1] == pathSeparator |


| <telerik:GridTemplateColumn HeaderText="Limit" UniqueName="Limit"> |
| <itemtemplate> |
| <asp:TextBox |
| width="50" |
| ID="LimitTextBox" |
| runat="server" |
| Text='<%# Eval("Limit") %>' |
| </asp:TextBox> |
| </itemtemplate> |
| </telerik:GridTemplateColumn> |
RadEditor issues in firefox:
Our Current version of the RadEditor is 7.3.4.0
These issue were reproduced on Firefox 3.0.7
The editor has NewLineBr set to false.
Issue one:
Step 1: Type "Line Number One" and then press enter.
Step 2: Type "Line Number Two"
Step 3. click the "<>" HTML button. The following html is displayed:
Line number one
<p>Line number two</p>
<br />
I would have expected the html to display:
<p>Line number one</p>
<p>Line number two</p>
Issue two:
Step 4: Switch back to Design mode
Step 5: Select all the text and press the delete key
Step 6. click the "<>" HTML button. The following html is displayed:
<br />
Why is the <br /> tag still there?
Issue three:
Step 7: Clear all the text in the HTML editor and switch back to Design Mode.
Step 8: Type "Heading One".
Step 9: Tripple click "Heading One" and apply the H1 style to it.
Step 10: Put the cursor at the end of the "Heading One" line and press enter.
The type is still H1 I would expect it to create a new normal text paragrah after the "H1" line.
Step 11: Type "Heading Two"
Step 12: Tripple Click "Heading Two" and apply the H2 style to it.
Step 13. click the "<>" HTML button. The following html is displayed:
<h1>Heading One
<p>
<h2>Heading Two</h2>
</p>
</h1>
<br />
I would have expected:
<h1>Heading One</h1>
<h2>Heading Two</h2>
Step 14: Switch back to Design mode
The design looks different.
Step 15. click the "<>" HTML button. The following html is displayed:
<h1>Heading One
<p>
</p>
</h1>
<h2>Heading Two</h2>
<p></p>
<br />
What the? How has the html just by switching views. This is closer to what I would expect afterstep 13, but whats with the additional p and br tags?
Issue Four:
Step 16. Clear all the text in the HTML editor and switch back to Design Mode.
Step 17: Type "Line Number One" and then press enter.
Step 18: Type "Line Number Two" and then press enter.
Step 19: Type "Line Number Three" and then press enter.
Step 20: Insert the cursor directly before the "Two" in "Line Number Two" and press enter.
Instead of splitting the line into two paragraphs and setting the cursor before the "Two", the paragraph is split in half and a paragraph is created in between them.
Step 21. click the "<>" HTML button. The following html is displayed:
Line Number One
<p>
<p>Line Number </p>
<p> </p>
<p>Two</p>
Line Number Three</p>
I would have expected:
<p>Line Number One</p>
<p>Line Number </p>
<p>Two</p>
<p>Line Number Three</p>
Issue Five:
I pasted from a word document using the Paste Plain Text. Every paragraph contained double br tags instead of being wrapped in a p tag. This happens despite NewLineBr being set to false.

Hi
I have posted this question but I think it was in the wrong forum (http://www.telerik.com/community/forums/aspnet/editor/radeditor-design-html-preview-buttons-are-disappearing.aspx).
I use RadEditor from Telerik.Web.UI.dll version 2009.1.402.35.
I have a simple page containing a RadTabStrip. Two of the RadPageView contains a RadEditor. This page is displayed into a RadWindow.
I have made a sample of my problem (I could send it if you give me a e-mail address). The code is also in the original question.
The problem I have is that when I press one of the DESIGN, PREVIEW, or HTML button, the RadEditor resizes and I don't see those 3 buttons anymore.
I want the RadEditor to fully fill the tab. And I want the tab to fully fill the Window.
What can I do?