Unplanned
Last Updated: 22 Jan 2021 09:00 by ADMIN

When a watermark needs more space than the available on the page, it should be resized. At this point, part of its content can be cut off as it falls outside of the page bounds.

Workaround: Decrease the size of the watermark prior to exporting it to PDF:

foreach (var section in this.document.Sections)
{
    Header header = section.Headers.Default;
    if (header != null)
    {
        foreach (Watermark watermark in header.Watermarks)
        {
            if (watermark.TextSettings != null && watermark.TextSettings.Width > section.PageSize.Width)
            {
                watermark.TextSettings.Width = section.PageSize.Width;
            }
        }
    }
}

Completed
Last Updated: 29 Jan 2021 15:31 by ADMIN
Release R1 2021 SP1

The missing feature leads to this unwanted behavior:

  • When there is content control, which generates content on interaction, and it has some custom run properties set to it, they are lost when the user modifies it.

 

As a workaround, you need to apply a custom style (with the desired run properties) and apply it to the content control.

Unplanned
Last Updated: 28 Jan 2021 12:49 by ADMIN

When exporting to a PDF filea document with a header containing a watermark, set by a shape, the rest of the header content is skipped and the header is exported with default margin values.

A possible workaround could be to set the watermark as an image.

Unplanned
Last Updated: 08 Feb 2021 16:06 by ADMIN

Absolute positioning of images, defined in the class stylesheet, is not respected.

Unplanned
Last Updated: 22 Mar 2021 10:30 by ADMIN
When importing or exporting a document with an invalid field structure, an exception is thrown. Add mechanism for handling that and skipping such fields so the other content can be imported.
Completed
Last Updated: 05 Apr 2021 10:13 by ADMIN
Release R2 2021

According to the RTF specification: The valid values for the "\ls" index are from 1 to 2000.

They are currently exported from zero or "\ls0".

Unplanned
Last Updated: 30 Mar 2021 05:33 by ADMIN

 An incorrect file is produced when merging a stream more than 40 times.

Workaround: A possible workaround could be to merge up to 40 times in one file, then continue merging in a new one, and finally merge the newly generated documents.

 

Unplanned
Last Updated: 21 Apr 2021 10:58 by ADMIN

When exporting a document containing a FloatingImage in the header/footer the measurement of the header/footer height doesn't take into account the height of this image.

This leads to overlapping the page content with the image.

Workaround: Increase the Header (or Footer) top page margin by the height of the image:

foreach (Section section in this.document.Sections)
{
	double floatingImageHeight = 0;
	foreach (BlockBase block in section.Headers.Default.Blocks)
	{
		if (block is Paragraph paragraph)
		{
			FloatingImage floatingImage = (FloatingImage)paragraph.Inlines.FirstOrDefault(i => i is FloatingImage);
			floatingImageHeight = floatingImage.Image.Height;
		}
	}

	double left = section.PageMargins.Left;
	double top = section.PageMargins.Top + floatingImageHeight;
	double right = section.PageMargins.Right;
	double bottom = section.PageMargins.Bottom;
	section.PageMargins = new Telerik.Windows.Documents.Primitives.Padding(left, top, right, bottom);
}

Completed
Last Updated: 27 Apr 2023 07:35 by ADMIN
Created by: Telerik Admin
Comments: 3
Category: WordsProcessing
Type: Bug Report
1
Header is not imported when it contains image
Completed
Last Updated: 20 May 2022 05:51 by ADMIN
Release R2 2022 SP1

When exporting to PDF a document containing Table merged into a TableCell an extra empty space below the inner table is added:

Unplanned
Last Updated: 11 Jun 2021 09:23 by ADMIN
Created by: Al
Comments: 0
Category: WordsProcessing
Type: Feature Request
1

Add support for all number switches.  More info is available here: Formatting fields with switches

Here are the switches that should be supported:

Amount \# $,0.00: {MERGEFIELD FirstAmount \# $,0.00}
Amount \# $#,###,###: {MERGEFIELD FirstAmount \# $#,###,###}
Amount \*CardText:  {MERGEFIELD \\*CardText}
Amount \*DollarText:  {MERGEFIELD \\*DollarText}
Integer \*alphabetic: {MERGEFIELD \\*alphabetic}
Integer \* ALPHABETIC: {MERGEFIELD FirstInteger \* ALPHABETIC}
Integer \* OrdText: {MERGEFIELD FirstInteger \* OrdText}
Integer \* Ordinal: {MERGEFIELD FirstInteger \* Ordinal}
Integer \* roman: {MERGEFIELD FirstInteger \* roman}
Unplanned
Last Updated: 11 Jun 2021 09:29 by ADMIN
Created by: Al
Comments: 0
Category: WordsProcessing
Type: Feature Request
1

Add support for Upper and Lower field switches  More info is available here: Formatting fields with switches

Here are the switches that should be supported:

First Name Upper: {MERGEFIELD FirstName \* Upper}
First Name Lower: {MERGEFIELD FirstName \* Lower}
Completed
Last Updated: 02 Aug 2021 07:09 by ADMIN
Release R3 2021
The exception is thrown at Telerik.Windows.Documents.Core.Data.ValueMapper`2.GetToValue(TFrom value) with message 'Not supported from value: numTab'
Completed
Last Updated: 01 Jul 2021 14:16 by ADMIN
Release LIB 2021.2.705 (05 Jul 2021)

When the data is set as double or float the Numeric formatting of the MergeField is not respected.

When the following merge field:

MERGEFIELD BAL  \# ###,0.00

is populated with 5.70F or 5.70D the result is 5.7 instead of 5.70.

 

Unplanned
Last Updated: 01 Jul 2021 08:12 by ADMIN
Line-height of the spans is not imported when converting Html to Docx
Unplanned
Last Updated: 28 Jul 2021 13:42 by ADMIN
In the current implementation, when the table and its cells don't define specific widths, they are automatically calculated according to the available space. This, however, might sometimes result in breaking whole words. The entirety of words should be preserved if that is possible in the concrete case.
Unplanned
Last Updated: 29 Jul 2021 14:24 by ADMIN
Num definition that follows another num definition and both share the same abstractNumId should continue the numbering. In the current version, the numbering is restarted. 
Unplanned
Last Updated: 05 Aug 2021 14:22 by ADMIN
Tables inside a single cell are not on one row when imported from HTML 
Completed
Last Updated: 24 Aug 2021 14:15 by ADMIN
Release R3 2021
NullReference exception when importing specific document.
Completed
Last Updated: 23 Oct 2021 17:16 by Tom
Release R3 2021 SP1
Implement options for setting hyperlink on an image and preserving it in import/export.