Declined
Last Updated: 11 Dec 2019 06:32 by ADMIN
Created by: Benny
Comments: 1
Category: WordsProcessing
Type: Bug Report
2

Special chars (åäö) with PdfFormatProvider wont work.

Project submitted!

    public void SpecialCharsTest()
        {
            RadFlowDocument document = new RadFlowDocument();

            RadFlowDocumentEditor editor = new RadFlowDocumentEditor(document);

            editor.InsertText("Before text");
            editor.InsertText("åäö ÅÄÖ ☕"); // This line will not appear in the pdf 
            editor.InsertText("After text");
            using (Stream output = new FileStream("specialCharTest.pdf", FileMode.OpenOrCreate))
            {
                PdfFormatProvider provider = new PdfFormatProvider();
                provider.Export(document, output);
            }
        }

Special characters wont work :-/

Unplanned
Last Updated: 30 Dec 2019 07:01 by ADMIN
Currently, ImportSettings allows importing a single stylesheet only. Users should be able to specify and load several external stylesheets.
Unplanned
Last Updated: 03 Sep 2024 14:10 by ADMIN
'Value cannot be null. Parameter name: relationshipId' exception is thrown when an image does not have a relationship id specified. MS Word is showing the image as invalid but renders the document.
Unplanned
Last Updated: 17 Apr 2020 07:44 by ADMIN
Currently, the Float property is not supported and it is skipped on import.
Completed
Last Updated: 02 Jun 2020 14:36 by ADMIN
Release LIB 2020.2.608 (06/08/2020)
The decimal values are exported using the symbol defined in the thread culture. However, they should always use the period as a decimal symbol. The wrong value can lead to wrong resizing of the image inside the exported document.

Workaround: Change the current culture settings of the thread before exporting:
string cultureName = Thread.CurrentThread.CurrentCulture.Name;
CultureInfo cultureInfo= new CultureInfo(cultureName);
if (cultureInfo.NumberFormat.NumberDecimalSeparator != ".")
{
    cultureInfo.NumberFormat.NumberDecimalSeparator = ".";
    Thread.CurrentThread.CurrentCulture = cultureInfo;
}

Completed
Last Updated: 15 Mar 2022 10:27 by ADMIN
Release R2 2022
InvalidOperationException: 'The start index of the cell could not miss.' or ArgumentOutOfRangeException is thrown during the import of the document while calculating the cells that need to be merged.
Duplicated
Last Updated: 28 May 2020 12:15 by ADMIN
Created by: Dimitar
Comments: 0
Category: WordsProcessing
Type: Bug Report
2

Borders are not correctly imported from HTML.

Workaround: Set borders in code:

var tables = document.EnumerateChildrenOfType<Table>();

var border = new Border(1, BorderStyle.Single, new ThemableColor(Colors.Black));

foreach (var table in tables)
{
    table.Borders = new TableBorders(border);

    foreach (var row in table.Rows)
    {
        foreach (var cell in row.Cells)
        {
            cell.Borders = new TableCellBorders(border);
        }
    }
}

Unplanned
Last Updated: 28 Jul 2020 08:02 by ADMIN

There is a discrepancy between RadWordsProcessing and MS Word:

A possible workaround could be to set the row height the same as the image height:
row.Height = new TableRowHeight(HeightType.Exact, image.Image.Height); 

Completed
Last Updated: 29 Jan 2021 14:43 by ADMIN
Release R1 2021 SP1
Image size is not respected when importing HTML
Unplanned
Last Updated: 24 Sep 2020 06:07 by ADMIN

There are 27 types of border styles in the Open XML specification and they are implemented in RadFlowDocument. Part of the borders are already supported (eg. None, Single, Dotted) when exporting to HTML, all others are treated as None and stripped.

The HTML format doesn't support all types of border styles OOXML format supports.

Unplanned
Last Updated: 29 Sep 2020 11:42 by ADMIN
The provider can be extended so that the users can choose between exporting the superscript/subscript text with CSS styling or with HTML tags. Currently, the content can be exported with styles only.
Completed
Last Updated: 29 Jan 2021 14:49 by ADMIN
Release R1 2021 SP1
When exporting to PDF the bullets of the unsorted list are missing.
Unplanned
Last Updated: 31 Oct 2023 15:02 by ADMIN
The paper source is lost when importing/exporting a docx file
Unplanned
Last Updated: 30 Apr 2021 06:09 by ADMIN
Currently, "none", "inline", and "block" values are supported. 

A full list of the property value options could be found here: CSS Display Property.
Unplanned
Last Updated: 28 May 2021 07:23 by ADMIN
Created by: Oksana
Comments: 0
Category: WordsProcessing
Type: Feature Request
2
Provide support for import and export of Fields to HTML format.
Unplanned
Last Updated: 13 Apr 2022 09:33 by ADMIN
Created by: Andy
Comments: 2
Category: WordsProcessing
Type: Feature Request
2
Add Mail Merge events.
Completed
Last Updated: 13 Nov 2024 09:22 by ADMIN
Release 2024.2.426 (2024 Q2)
The list indentation is wrong when exporting several levels to PDF
Unplanned
Last Updated: 07 Nov 2024 11:53 by ADMIN
When measuring nested tables and the levels are more than 5 level, the export is very slow.
Completed
Last Updated: 03 Feb 2022 07:45 by ADMIN
Release R1 2022 SP1
The exception is thrown for documents that contain a repeating section that spans over the whole content of a table cell. Also, the content should contain more than one paragraph.
Duplicated
Last Updated: 07 Dec 2021 11:23 by ADMIN
Created by: Dominik
Comments: 1
Category: WordsProcessing
Type: Bug Report
2

Hello,

 

we are describing a reproducable problem (WordProcessing demo page), where DOCX footnotes are not imported as expected.

 

Current behaviour:

Upon converting a custom DOCX (including footnotes) into a DOCX again, using the WordProcessing demo, the converted document does no longer contain any footnotes.

 

Expected behaviour:

The downloaded DOCX should still contain all footnotes from the uploaded DOCX after converting it.

 

How to reproduce:

  1. Download docx sample file (or create new Word 2016 document -> References -> Add footnote)
  2. Go to demo page https://demos.telerik.com/aspnet-mvc/wordsprocessing 
  3. Select "load custom document"
  4. Upload sample file
  5. Select "Convert and Download"
  6. Open the converted file - the footnotes in the document are gone

 

 

Is there anything that can be done as a workaround until this has been resolved?

 

Thank you in advance.

 

Kind Regards,

Dominik