Unplanned
Last Updated: 07 Sep 2022 15:47 by Hristo
InvalidOperationException: 'ColumnSpan must be at least 1.' is thrown when importing HTML document with table column containing colspan="0".

The colspan="0" has special meaning according to the HTML specification http://www.w3.org/TR/html401/struct/tables.html:
-------------------
colspan = number [CN]

This attribute specifies the number of columns spanned by the current cell. The default value of this attribute is one ("1"). The value zero ("0") means that the cell spans all columns from the current column to the last column of the column group (COLGROUP) in which the cell is defined.
-------------------
Workaround: Preprocess the HTML, and delete all occurrences of colspan="0".
Unplanned
Last Updated: 29 Aug 2022 12:53 by Prashant

When a document is imported from HTML, we set locally to the span elements Times New Roman nevertheless it is not declared anywhere. This breaks the document view if for example we decide to change the RadDocument's default font family or even the NormalWeb style's font. The same applies for the font size as well.

Workaround: Clear the FontFamily property after import

foreach (Span span in this.radRichTextBox.Document.EnumerateChildrenOfType<Span>())
{
    span.GetStyleProperty(Span.FontFamilyProperty).ClearValue();

   span.GetStyleProperty(Span.FontSizeProperty).ClearValue();

}

Steps to reproduce:

1. Import the following html:

this.radRichTextBox.Document = new HtmlFormatProvider().Import(@"<h1>Hello</h1><h2>World</h2><p>Lorem ipsum<p>");

2. Set the document's default font family to Comic Sans MS:

this.radRichTextBox.Document.Style.SpanProperties.FontFamily = new FontFamily("Comic Sans MS");

Observe: The font in the document is Times New Roman

Expected: The font should be Comic Sans MS

Unplanned
Last Updated: 05 Aug 2022 10:35 by ADMIN

When changing the theme through ThemeResolutionService.ApplicationThemeName all the application gets changed. Except the ForeColor of the RadRichTextEditor does not get change. Hence the box displays black text on a dark background. Quite unreadable.

Assigning the theme directly in the designer makes everything renders ok.

Sample application attached.

Regrads,
Matthias

 

Completed
Last Updated: 23 Sep 2022 13:07 by ADMIN
Release R3 2022
There is a lag when the page contains an image as a background and the user types.
Completed
Last Updated: 23 Sep 2022 13:07 by ADMIN
Release R3 2022

The ChangeFontStyle method does not work when setting Underline: 

 

radRichTextEditor1.ChangeFontStyle( FontStyle.Underline);

 

Workaround:

radRichTextEditor1.ToggleUnderline();

Completed
Last Updated: 08 Aug 2022 10:24 by ADMIN
Release R3 2022 (LIB 2022.2.808)
When the definition of font-weight contains a CSS variable as a value for the property, NullReferenceException is thrown while importing the content.
Unplanned
Last Updated: 08 Jun 2022 08:28 by Prashant
CopyPropertiesFromOverride() method of InlineUIContainer is called more than once for every Copy/Paste command.
Unplanned
Last Updated: 18 May 2022 07:03 by Timo

The default browser paragraph spacing is not preserved during HTML import-export. 

Workaround:

StyleDefinition normalStyle = this.radRichTextEditor1.Document.StyleRepository[RadDocumentDefaultStyles.NormalWebStyleName];
normalStyle.ParagraphProperties.SpacingAfter = 20;
normalStyle.ParagraphProperties.SpacingBefore = 20;

Unplanned
Last Updated: 09 May 2022 12:06 by Anu
Introduce an option to change the character which follows the list level symbol. By default this is a Tab character, however, they can be the following:

- Tab
- Space
- Nothing (none following character)

In OOXML, this is described using the 'suff' element.
In MS Word, this setting could be changed by selecting the bullet/number of the list item -> Context Menu -> Adjust List Indents -> Follow number with:.
Unplanned
Last Updated: 06 May 2022 05:01 by Tejas
One is not able to set the font size of span to less than 2
Unplanned
Last Updated: 05 Apr 2022 10:45 by Timo
Importing HTML leaves the Default Style with Verdana font instead of Times New Roman.
Unplanned
Last Updated: 04 Apr 2022 08:56 by Timo

Importing this:

<p>This is a paragraph.</p>
<p>
	This is a paragraph.
</p>

should import two identical paragraphs, but it actually import it like this:

This is a paragraph.
 This is a paragraph.

It has a leading space before the second paragraph.

Completed
Last Updated: 23 Sep 2022 13:07 by ADMIN
Release R3 2022
The text wrapping options are disabled when selecting the second image in the document. 
Completed
Last Updated: 28 Mar 2022 16:19 by ADMIN
Release R2 2022 (LIB 2022.1.329)
The scrollbars flicker with a particular size of the form. After some time an exception is thrown as well.
Unplanned
Last Updated: 16 Feb 2022 09:24 by Jeremy

Pasting adds an additional paragraph that does not exist in the source(copy).

 

Completed
Last Updated: 22 Mar 2022 13:50 by ADMIN
Release R2 2022 (LIB 2022.1.322)

RadRichTextEditor: The paste options popup stays visible when the control is hidden

 

Workaround:

((MiniToolBarBase)this.radRichTextEditor1.RichTextBoxElement.PasteOptionsPopup).Hide();

 

Completed
Last Updated: 18 Feb 2022 15:16 by ADMIN
Release R1 2022 SP1
XamlFormat provider cannot import files created with NET Framework 
Unplanned
Last Updated: 24 Jan 2022 11:36 by ADMIN
 When importing a table from HTML and the content size is larger than the provided size  the table should be auto-fitted.
Unplanned
Last Updated: 17 Jan 2022 11:28 by ADMIN
The AddParagraphToSelection method does not work as expected. The selection is reset and the last paragraph is selected only. 
Unplanned
Last Updated: 07 Dec 2021 14:11 by ADMIN

The built-in Hyperlink style is not applied to hyperlinks imported from HTML (<a> tag). As a result, the hyperlinks in the document does not have the blue underline.

- Import the following HTML: <a href="http://google.com">test</a>

Expected: The built-in Hyperlink style should be applied to the hyperlink spans.

Actual: The default hyperlinks style is not applied. You can indicate this by the missing underline decoration. Or by the missing value of the Style property of the hyperlink annotations.