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>
Characters defined with their unicode codes in HTML won't be imported as symbols, but instead of their codes, for example: <span>料</span> <span>資</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>​</span> results in Ȁb;
The Object pool is keeping a references to RadTextBlock and RadRun.
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>
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.
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.
When caret is just after list bullet/numbering and Backspace is pressed, left indent is cleared. Instead, only the bullet should be deleted, and the indent should be kept as it is set.
When ParagraphProperties dialog is opened while several paragraphs are selected, the values in the dialog correspond to the values of that paragraph, where the cursor was placed before opening the dialog. Then if the dialog is closed with OK button, these values are applied to the other paragraphs as well.
Currently when the text contains consecutive non-space symbols like "~!@#$%^&*()_+=-`[]{};:'"/\|., ", each character is detected as a separate word. Instead, they should be considered one word, including all the subsequent space characters.
The following functionalities should respect this grouping:
- Caret navigation by words (CTRL + left/right arrow), MoveCaret UI command and the corresponding DocumentPosition methods.
- Selecting word by double clicking.
When a list is copied from one document (source) to another document (target) and the target contains custom list with different name, the paste command does not paste the list in the target. Steps to reproduce: 1. Open two instances of RadRichTexbox 2. In the first RRTB create new list style -> List1 and use it to create a list 3. In the second RRTB create a new list style -> List 2 and use it to create a list 4. Copy the list from the second RRTB and try to paste it after the list in the first RRTB Expected: The list is pasted. Actual: The list is not pasted, but the list style is added to the List Library.
When a list associated with list style is copied from a document (source document), and is pasted in another document (target document), and the target document contains list style with the same name, the the list style from source is added to the target, which creates two list styles with the same name in the target document. In the same scenario, MS Word uses the list style from the target, and do not add the list style from the source.
When the paragraph formatting symbol has a formatting, different than the one of the spans in this paragraph, the bullet is not aligned to the baseline of the text
When adding a comment it should be marked as created from the current user. Layer with tool tips should be added to show this information. Also comment balloons should contain it.
The word is temporary marked as correct and when another word is added to the dictionary, the ignored one is highlighted again. As a workaround could be used the Ignore All option.
Currently ignored words are marked only in-memory using internal properties of the document model. Make them persist, similar to what MS Word do. Note: In the DOCX format, the document is marked as "clear" (doesn't contain spell check errors) and all misspelled words are enclosed with an errProof annotation.
Add support for inset borders for tables and table cells (Inset Line Border in OOXML).
The invalid values should be skipped and the document should be successfully imported.
More information: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tt . Note: this element is obsolete, and has the same meaning as <code>.
After resizing the window, the text stays at the same location instead of moving to the next line. The result is overlapping text.