Unplanned
Last Updated: 09 Feb 2021 08:50 by ADMIN
Binding errors from RadRibbonGallery in the TableStylesGallery are outputted in the Output window in Visual Studio, because of binding to the StyleDefinitions and CurrenSelectedStyle properties of the gallery's view model.
Unplanned
Last Updated: 31 Oct 2018 08:11 by ADMIN
Provide the ability to enter custom values (not listed in the drop-down) in Font size combo box.
Unplanned
Last Updated: 31 Oct 2018 08:11 by ADMIN
This scenario is not valid according to the HTML specification, but exception shouldn't be thrown.

Steps to reproduce:
- Try to import the following HTML:

<html>
<body>
<p style="font-size = 9px">Simple Test</p>
</body>
</html>

Observed: A NullReferenceException is thrown.
Unplanned
Last Updated: 31 Oct 2018 08:11 by ADMIN
Pressing Tab/Shift+Tab when caret position is at the beginning of a paragraph should change current paragraph FirstLineIndent instead of LeftIndent.

First line indent should be changed with Document.DefaultTabWidth step.

Workaround (using PreviewEditorKeyDown): in the attached file.
Completed
Last Updated: 30 Nov 2020 15:03 by ADMIN
Release LIB 2020.3.1207 (07/12/2020)
Importing structured document tags with auto-close SdtContent tag throws InvalidCastException exception
Declined
Last Updated: 16 Aug 2016 13:22 by ADMIN
ADMIN
Created by: Todor
Comments: 0
Category: RichTextBox
Type: Bug Report
0
Localization strings for thumbs and tab stop tooltips are missing. 

Note: This item is merged with the one at http://feedback.telerik.com/Project/143/Feedback/Details/141977 . To track the status of the issue, please subscribe to the other feedback item.
Completed
Last Updated: 03 Aug 2020 08:15 by ADMIN
Release LIB 2020.2.803 (03/08/2020)
Created by: Hirofumi
Comments: 0
Category: RichTextBox
Type: Bug Report
0
While using Japanese IME, inserting half-width space using Shift+Ctrl results in two spaces added to the document.
Unplanned
Last Updated: 31 Oct 2018 08:11 by ADMIN
Inserting DocumentFragment into RadDocument leads to loss of style definitions from the fragment which names are the same as some of the styles in the RadDocument's style repository. This causes loss of formatting of the text in the document fragment.

For example if in the fragment there is a style with style name "Style_1" and in the RadDocument exists a style with the same name, that style will be omitted during the insertion of the fragment into the document.

Workaround: Styles in the fragment could be renamed to avoid naming conflict with styles in the main document. For example, add the following code snippet right after the importing of the document and before the creation of the fragment:

                string styleSuffix = "_1";
                foreach (var importedStyle in rtfDoc.StyleRepository)
                {
                    importedStyle.Name = string.Concat(importedStyle.Name, styleSuffix);
                }

This will automatically change the styles of all elements with the renamed styles.
Completed
Last Updated: 09 Nov 2015 19:22 by ADMIN
Unplanned
Last Updated: 31 Oct 2018 08:11 by ADMIN
Creating deep copy using CreateDeepCopy method of an empty Section (without paragraphs or with one empty paragraph) adds empty string Span which leads to ArgumentOutOfRangeException. 

Workaround: clear the empty string Spans before measuring:

foreach (Span span in sectionClone.EnumerateChildrenOfType<Span>().ToList())
{
    if (string.IsNullOrEmpty(span.Text))
    {
        ((Paragraph)span.Parent).Inlines.Remove(span);
    }
}




Steps to reproduce:

1. Execute the following code-snippet:

RadDocument document = new RadDocument();
Section section = new Section();
section.Blocks.Add(new Paragraph());
document.Sections.Add(section);

RadDocument documentClone = (RadDocument)document.CreateDeepCopy();
Section sectionClone = (Section)section.CreateDeepCopy();
documentClone.Sections.Clear();
documentClone.Sections.Add(sectionClone);
documentClone.EnsureDocumentMeasuredAndArranged();

2. Set the documentClone to a RadRichTextBox instance to visualize it.

3. Try to click in the document.

Observe: ArgumentOutOfRangeException is thrown.
Unplanned
Last Updated: 07 Jul 2020 14:18 by ADMIN
When using Japanese, the content should not flow after the content border. Instead, it should be moved on the next line.
Unplanned
Last Updated: 31 Oct 2018 08:11 by ADMIN
ADMIN
Created by: Todor
Comments: 0
Category: RichTextBox
Type: Feature Request
0
Introduce the support for the border property (with type, size, color...) for a span elements.

In OOXML, this looks like:

<w:r>
  <w:rPr>
    <w:rFonts w:eastAsia="Times New Roman"/>
    <w:sz w:val="45"/>
    <w:szCs w:val="45"/>
    <w:bdr w:val="single" w:sz="12" w:space="0" w:color="000000" w:frame="1"/>
  </w:rPr>
  <w:t>Div with border for Telerik</w:t>
</w:r>
<w:r>
Unplanned
Last Updated: 31 Oct 2018 08:11 by ADMIN
Characters defined with their unicode codes in HTML won't be imported as symbols, but instead of their codes, for example:

<span>&#26009;</span>
<span>&#36039;</span>

Some of these characters are often used, for example for umlauts (Ä, Ö, Ü) and CJK characters.

The hexadecimal code for Zero Width Space character is split into two parts:
<span>&#x200b;</span> results in Ȁb;
Completed
Last Updated: 26 Nov 2015 14:06 by ADMIN
ADMIN
Created by: Mihail
Comments: 3
Category: RichTextBox
Type: Bug Report
0
The Object pool is keeping a references to RadTextBlock and RadRun.
Unplanned
Last Updated: 31 Oct 2018 08:11 by ADMIN
NullReferenceException is thrown when trying to import a nested hyperlink, e.g. the following OOXML:

<w:hyperlink r:id="rId4" w:history="1">
  <w:hyperlink r:id="rId5" w:history="1">
    <w:r>
      <w:rPr>
        <w:rStyle w:val="Hyperlink"/>
        <w:rFonts w:eastAsia="Times New Roman"/>
      </w:rPr>
      <w:t>google</w:t>
    </w:r>
  </w:hyperlink>
</w:hyperlink>
Unplanned
Last Updated: 31 Oct 2018 08:11 by ADMIN
ADMIN
Created by: Tanya
Comments: 0
Category: RichTextBox
Type: Feature Request
0
Currently, an ArgumentException is thrown when trying to import an image with negative dimensions. In this scenario, we could import the document and skip the image, or read the size of the content.
Unplanned
Last Updated: 30 Jun 2020 07:50 by ADMIN

Dear all,

 

Exporting partially-selected annotation ranges (annotation markers around selection or only one annotation marker in the selection) with a DocumentFragment from a RadDocument does not seem possible (the DocumentFragment contains none of these annotation ranges).

 

For example, if I have a document ("[", "]" are the annotation markers):

"Test [annotated]",

select "Test [ann" and create a DocumentFragment, the Document fragment will contain "Test ann" and not "Test [ann]".

 

PS.: I am not sure if this falls into the feature request or bug report area.

Unplanned
Last Updated: 25 Jun 2020 08:09 by ADMIN
RtfFormatProvider does not import fonts when font definition starts with "fnil" tag
Completed
Last Updated: 13 May 2016 19:53 by ADMIN
The theme color is with higher priority. Thus, when the document is exported to DOCX and opened again, the default color is applied to the style.