Unplanned
Last Updated: 23 Oct 2024 04:50 by Martin

The center text alignment is lost when the last paragraph is copied and pasted. 

Steps to reproduce:

- Enter some text and center it.

- Copy and paste it into another document.

Actual: the aligmennt is lost

Expected: the alignment should be preserved

 

 

Unplanned
Last Updated: 11 Oct 2024 06:09 by Mark
RichTextBox: Custom annotations are not rendered correctly when they have no content and are right-aligned (gif Attached).  
Unplanned
Last Updated: 09 Oct 2024 09:19 by Mark
   

To reproduce set he following properties: 

MouseSelectionHandler.DoubleClickTime = 1000;
MouseSelectionHandler.MouseDragThreshold = 2;

MouseSelectionHandler.MouseDoubleClickThreshold = 60;

Unplanned
Last Updated: 26 Sep 2024 14:25 by Dimitar
Introduce support for import/export of a custom list styles in the HtmlFormatProvider. 
Unplanned
Last Updated: 27 Sep 2024 05:16 by ADMIN
NullReferenceException when loading a document with a continuous section break.
Unplanned
Last Updated: 20 Sep 2024 12:07 by Martin Ivanov
Created by: Martin Ivanov
Comments: 0
Category: RichTextBox
Type: Bug Report
1

Using the SpreadStreamExport feature of RadGridView doesn't work as expected when exporting DateTime objects. It exports the dates as String values which prevents the date-related features (like formatting) to work in Excel. 

To work this around, you can create a custom SpreadStreamExportRenderer and override its SetCellValue method. This will allow you to manually provide the DateTime object instead of the string.

  public class MyRenderer : SpreadStreamExportRenderer
  {
      public override void SetCellValue(DataType dataType, object value)
      {
          DateTime date;
          if (value != null && DateTime.TryParse(value.ToString(), out date))
          {
              base.SetCellValue(DataType.DateTime, date);
              var cell = this.GetCell() as ICellExporter;
              cell.SetFormat(new SpreadCellFormat() { NumberFormat = "yyyy-MM-dd HH:mm:ss" });
              return;
          }
          base.SetCellValue(dataType, value);
      }
  }


 spreadStreamExport.RunExportAsync(FILENAME, new MyRenderer(), options);

Unplanned
Last Updated: 16 Aug 2024 11:51 by Eugene
Processing hangs on HTML import when the html file contains large base64 images. 
Unplanned
Last Updated: 09 Aug 2024 08:26 by Swapnil
 Unify the keyboard selection in tables with the arrow keys to match MS Word.
Unplanned
Last Updated: 09 Aug 2024 07:04 by Swapnil
Replacing content that contains a list using DocumentFragment results in an invalid list style applied to the last paragraph.
Unplanned
Last Updated: 07 Jun 2024 06:09 by Daniel
The table layout is slow with documents that contain large tables. This causes slow import and later slow performance with such documents.
Unplanned
Last Updated: 03 Apr 2024 13:15 by ADMIN

If FontSize is not explicitly set in the style, the value displayed in the StyleFormattingPropertiesDialog is 16, which is from the const DocumentDefaultSettings.DEFAULT_FONT_SIZE.

But when rendering document, the actural font size is from the   StyleDefinition "defaultDocumentStyle".

So if the FontSize in the  StyleDefinition "defaultDocumentStyle" is set to a value other than 16 (I set it to a value of 12 in the attached document), the FontSize displayed in the StyleFormattingPropertiesDialog is incorrect.

Unplanned
Last Updated: 13 Mar 2024 11:56 by Emin Sadigov
Track change for Insert - Hyperlink is not marked as change properly.
Unplanned
Last Updated: 11 Mar 2024 14:07 by ADMIN
After switching to a different program and then back, this window is not at the top
Unplanned
Last Updated: 29 Feb 2024 13:37 by Øyvind

Numbered lists have invalid values when combining documents by using the InsertFragment method.

 

Workaround: use RadDocumentMerger:

RadDocument radDocument1 = RtfSourceProvider.Import(rtf1);
RadDocument radDocument2 = RtfSourceProvider.Import(rtf2);

AppendDocumentOptions options = new AppendDocumentOptions();
options.FirstSourceSectionPropertiesResolutionMode = SectionPropertiesResolutionMode.NoSectionBreak;

RadDocumentMerger merger = new RadDocumentMerger(radDocument1);
merger.AppendDocument(radDocument2, options);

RichText.Document = merger.Document;

Unplanned
Last Updated: 27 Feb 2024 07:13 by Jose Ramon
The caret is in wrong place when editing HTML with line breaks and using the Web Layout.
Unplanned
Last Updated: 28 Feb 2024 07:11 by ADMIN
As shown in the attached video.
Unplanned
Last Updated: 22 Feb 2024 13:08 by ADMIN
Created by: Caesar
Comments: 1
Category: RichTextBox
Type: Bug Report
0
As shown in the attached video.
Unplanned
Last Updated: 21 Feb 2024 12:11 by Caesar
Pasting text inside a ContentControl is disabled if it is locked.
Unplanned
Last Updated: 22 Feb 2024 08:51 by ADMIN
When you have a single PlainTextControl in the document you can insert another content controls in it. 
Unplanned
Last Updated: 21 Feb 2024 09:19 by Caesar
Pasting text with multiple paragraphs into a plain text content control is still possible when IsMultiline is set to false. 
1 2 3 4 5 6