Unplanned
Last Updated: 20 Jan 2021 16:41 by ADMIN
We need some kind of mechanism to track changes of table cell properties.
Completed
Last Updated: 23 Feb 2021 10:36 by ADMIN
Release R1 2021 SP2
At the moment the table handles the mouse even if the header/footer is not edited.
Completed
Last Updated: 11 Jan 2021 10:15 by ADMIN
Release R1 2021

If you press keys as the following order with English keyboard in Korean IME, you can get Korean letters - 가나다라.
'rkskekfk'

rk => 가
sk => 나
ek => 다
fk => 라

When I use Korean letters, second or third letter disappeared - 가다라.

 
Unplanned
Last Updated: 07 Jan 2021 05:32 by ADMIN
Character properties applied on the last paragraph symbol for a paragraph in a list, e.g. font size, are not exported to HTML when StyleExportMode is Inline. 

As a side effect, when the document is imported back, and the text of the bullet is deleted, its properties switch back to the default ones.

Workaround: Change the styles to export as inline properties:
htmlProvider.ExportSettings.StylesExportMode = StylesExportMode.Classes;
 
Please be aware that this may cause side effects, as described in this issue: RichTextBox: Character properties of the paragraph symbol are exported to HTML for the whole list item when StyleExportMode is Classes
Completed
Last Updated: 23 Feb 2021 10:35 by ADMIN
Release R1 2021 SP2
Created by: Oksana
Comments: 5
Category: RichTextEditor
Type: Bug Report
1

Hi Team,

 We find out another issue in the RichTextEditor about the Header and Footer Section of the page, we have a scenario in which we have a bigger table in the Footer section in terms of height, and the table going just "Out Of the Box". I tried the same table in the header section I found a similar behavior there also but the major issue is the Footer section where it's going out of the page.

I used the demo Winform application to reproduce this, I am also attaching the source file so you have to open it in the editor on your side to reproduce this issue.

 

Regards

Unplanned
Last Updated: 24 Dec 2020 08:20 by ADMIN
Created by: Guillermo
Comments: 0
Category: RichTextEditor
Type: Feature Request
2

Implement nested mail merge - creating mail merge reports using master-detail tables in a data source.

Typical example of this is creating an invoices with mail merge, where each invoice contains a list of items.

Workaround: for some scenarios creating custom merge field which evaluates to Table could simulate this behavior:

http://www.telerik.com/forums/merge-reports#lUdH39ww00SnEhTLLlrXwA

Unplanned
Last Updated: 22 Dec 2020 14:52 by ADMIN

Some fonts don't include bold and italic font styles. Currently, text formatted with such fonts and with applied bold or italic formatting is exported without the italic or bold effect. Instead, the default typeface can be exported, and additional transformation could be applied to the letters itself - e.g. skew transform for the italic.

Note: It seems that the GlyphTypeface for such fonts is using a non-italic (non-bold) font file and has StyleSimulations property set to ItalicSimulation (BoldSimulation) which is used in order to render the glyphs italic.

Unplanned
Last Updated: 17 Dec 2020 13:45 by ADMIN

The cell BackColor should be set when setting the paragraph BackColor.

Workaround: use the table properties dialog to set the back color.
Completed
Last Updated: 13 Dec 2021 11:51 by ADMIN
Release R1 2021

The paragraphs in the table are inheriting the negative indent from the previous paragraph.

Workaround: Manually remove the negative indent from the table paragraphs after the table is added.

The workaround in code:

private void RadRichTextEditor1_CommandExecuted(object sender, Telerik.WinForms.Documents.RichTextBoxCommands.CommandExecutedEventArgs e)
{
    if (e.Command is InsertTableCommand)
    {
        var table = radRichTextEditor1.Document.CaretPosition.GetCurrentTable();
       
        table.TableIndent = 0;  
        
        if (table != null)
        {
            foreach (var row in table.Rows)
            {
                foreach (var cell in row.Cells)
                {
                    foreach (var block in cell.Blocks)
                    {
                        var paragrpah = block as Paragraph;
                        if (paragrpah != null && paragrpah.LeftIndent < 0)
                        {
                            paragrpah.LeftIndent = 0;
                            paragrpah.HangingIndent = 0;
                        }
                    }
                }
            }
        }
        radRichTextEditor1.RichTextBoxElement.Document.UpdateLayout();
    }
}



 

Unplanned
Last Updated: 03 Dec 2020 12:09 by ADMIN
After a hyperlink is edited in a RTF document it duplicated
Unplanned
Last Updated: 25 Nov 2020 12:47 by ADMIN
The pasted text is not encoded decoded when the target framework is .Net 4.0 and the text contains some symbols like é, è, à, ê, ù, etc.
Unplanned
Last Updated: 11 Nov 2020 06:55 by ADMIN
Exception when adding a space after a table placed in the header or footer.
Unplanned
Last Updated: 09 Nov 2020 07:32 by ADMIN
The table is not properly resized when using the left-most border. The table should be resized like in MS Word (see attached).
Unplanned
Last Updated: 09 Nov 2020 07:09 by ADMIN
When you insert a table and try to grab the right border and resize it, the result is that the inner cells resize, while the total width of the table remains the same. 
Unplanned
Last Updated: 26 Oct 2020 07:13 by ADMIN
When a DOCX document contains a table with fixed layout, and the table contains <tblGrid> element with improper widths (not coinciding with the ones visualized by MS Word), and such document is imported, the table is laid out with the width of the sum of the column widths imported from the table grid (tblGrid), instead of ones that could be correctly computed by the preferred width of the table cells. 

MS Word, for example, may ignore the widths specified in the tblGrid and compute new ones.

As a side effect, fixed-width tables can be laid out longer than their preferred width.
Completed
Last Updated: 19 Oct 2020 13:33 by ADMIN
Release R3 2020 SP1

Hi,

Font size in ribbon does not change to the font size of custom style. 

 

See attached video and c# project.

Best regards,

Ziping Wang

Unplanned
Last Updated: 18 Sep 2020 06:55 by ADMIN
Created by: Maulik
Comments: 0
Category: RichTextEditor
Type: Bug Report
2
When the copied text doesn't contain any formating the Keep Text Only paste option should be applied.
Unplanned
Last Updated: 31 Aug 2020 13:03 by ADMIN
Created by: Oksana
Comments: 0
Category: RichTextEditor
Type: Feature Request
2
Add support for Paragraph and Page borders.
Completed
Last Updated: 21 Aug 2020 12:32 by ADMIN
Release R3 2020 (LIB 2020.2.826)

Please refer to the attached IncorrectImageResizing.gif illustrating how to reproduce the problem with the Demo application.

Workaround: feel free to resize the image via the mouse cursor.

Unplanned
Last Updated: 24 Jun 2020 08:57 by ADMIN

Invalid table layout when resizing a row on the second page

To reproduce:

- Add a table with several rows so there are some rows on the second page.

- Resize a row on the second page with the mouse.

Result: The table layout is not correct after the resize operation