Unplanned
Last Updated: 12 Apr 2019 15:10 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
Unplanned
Last Updated: 10 Apr 2019 06:52 by ADMIN
Created by: Decisive Computing
Comments: 0
Category: RichTextBox
Type: Bug Report
0

Nested ol/ul list should be inside a <li> element of the list in which it is nested. For example:

<ul>
<li>Option A</li>
<li>Option B
  <ul>
    <li>Sub 1</li>
    <li>Sub 2</li>
  </ul>
</li>
</ul>

 

Unplanned
Last Updated: 05 Apr 2019 15:41 by ADMIN
The character properties applied on the last paragraph symbol for a paragraph in a list (e.g. font family), are exported to HTML for the whole paragraph which is in the list. 

As a notable side effect, when such HTML is imported, the default font size for a paragraph in a default bullet list changes to Symbol.

Regression: The bug is introduced in 2016_2_613.


Workaround: Change the styles to export as inline properties:
htmlProvider.ExportSettings.StylesExportMode = StylesExportMode.Inline;

but be aware that this may cause issues as described in the related RichTextBox: Character properties of the paragraph symbol are not exported to HTML when StyleExportMode is Inline
Completed
Last Updated: 28 Mar 2019 12:59 by ADMIN
Currently the logic that sets ChangeFontSizeCommand up relies on RadComboBoxItem.Tag to be used as a command parameter. Although FontSize semantically is a numeric value, the  command only works with string parameters.
Completed
Last Updated: 25 Mar 2019 12:15 by ADMIN
The event is not fired when updating the IncludePictureField fields. It is also valid when the fields are in Header or Footer. The issue is a regression in R1 2019.

The UpdateAllFields() method of RadDocumentEditor can be invoked so the event can be fired and give you the possibility to update the images.
Completed
Last Updated: 25 Mar 2019 11:31 by ADMIN
HTML parser does not handle the described scenario properly. Nevertheless this is not a valid css snippet, app should not be brought to inoperable state.
Declined
Last Updated: 22 Mar 2019 15:54 by ADMIN
I want to import a FlowDocument into IDocumentEditor in order to obtain a RadDocument which I can convert to PDF.
Unplanned
Last Updated: 19 Mar 2019 16:39 by ADMIN
Add ability to select last paragraph symbol in Section and TableCell.  Currently there is no document position after the last paragraph symbol in a document/section/table cell. This means it cannot be part of a DocumentSelection.
Unplanned
Last Updated: 19 Mar 2019 16:33 by ADMIN
Font weight, size and other current editing style properties are not preserved when document layout is performed, for example in the following cases:
- the document is in web layout mode and the controls is resized
- scroll bar changes its visibility.

Steps to reproduce:
- Set RadRichTextBox to Web layout mode.
- Type a word, select it and make it bold.
- Press enter and type a word
- Repeat the previous step until RadRichTextBox height is reached and scrollbar appear.
- Type a word.
Expected: The last word is bold.
Actual: The last word is not bold.
Unplanned
Last Updated: 18 Mar 2019 14:39 by ADMIN
Applying negative LeftIndent or FirstLineIndent of a paragraph in web layout mode will visualize the paragraph to the left of RadRichTextBox boundaries.
Unplanned
Last Updated: 18 Mar 2019 09:01 by ADMIN
Created by: mike
Comments: 0
Category: RichTextBox
Type: Feature Request
1
Add support for the SUBJECT field. The field is evaluated using the document metadata.

Description: https://support.office.com/en-us/article/field-codes-subject-field-f9495276-955a-46a0-b110-0bbc5dd6f0a5?ui=en-US&rs=en-US&ad=US
Unplanned
Last Updated: 14 Mar 2019 17:39 by ADMIN
ADMIN
Created by: Andrew
Comments: 0
Category: RichTextBox
Type: Feature Request
6
When Charformat is used as a general switch the formatting of the first letter of the field name is applied to the whole result.

Also, consider implementing \*MERGEFORMAT - This switch applies the formatting of the previous result to the new result. For example, if you select the name displayed by the field { AUTHOR \* MERGEFORMAT } and apply bold formatting, Word retains the bold formatting when the field is updated to display a new author name.
Completed
Last Updated: 13 Mar 2019 13:40 by ADMIN
When RadRichTextBox.IsReasdOnly is true, RadRichTextBox.CommandExecuting is not raised when the user double clicks the header or footer area.
Unplanned
Last Updated: 12 Mar 2019 15:50 by ADMIN
Add support for positioning floating images relative to section columns. Currently, such images are laid out relative to the first column.
Unplanned
Last Updated: 06 Mar 2019 17:39 by ADMIN
ADMIN
Created by: Mihail
Comments: 0
Category: RichTextBox
Type: Feature Request
2
Export the image rotation properties to HTML with the CSS transform property (https://developer.mozilla.org/en-US/docs/Web/CSS/transform ).
Unplanned
Last Updated: 06 Mar 2019 17:39 by ADMIN
ADMIN
Created by: Tanya
Comments: 0
Category: RichTextBox
Type: Feature Request
6
We could export the image absolute position as CSS style, for example: ".img{position: absolute;left: 100px;top: 150px;}"

Additionally we could export the left, top, right and bottom margins of the image, as we already have this information in the model.
Unplanned
Last Updated: 06 Mar 2019 12:39 by ADMIN
When importing an image, defined with a Base64 string which doesn't have its size explicitly set, it is rendered with ImageInline.DefaultImageSize instead of using its real size.

Workaround: Check the size defined in the ImageSource:
var image = this.radRichTextBox.Document.EnumerateChildrenOfType<ImageInline>().First();
if (image.Height == 10 && image.ImageSource.DecodePixelHeight == 0)
{
    image.Height = image.ImageSource.Height;
}
Unplanned
Last Updated: 25 Feb 2019 09:32 by ADMIN
Using the RadDocumentEditor class, the users can change the margin of the current section. However, there isn't a method allowing them to change the default section margin of the document. 
Completed
Last Updated: 15 Feb 2019 12:05 by ADMIN
Currently, caret continues to blink even when typing or navigation is in progress (e.g. arrow key is pressed and held), which is inconvenient for the end users. Instead, the caret should stop blinking during these operations, similarly to industry standard apps like MS Word and OpenOffice.
Completed
Last Updated: 14 Feb 2019 14:39 by ADMIN
"Based on style" combobox is not filled with all linked and paragraph styles in the following cases:
- "Modify style" dialog doesn't display the possible "based on" styles in the combobox when editing linked styles. 
- "Create new style from formatting" dialog doesn't display the possible "based on" styles in the combo box during creation of new linked style.

Steps to reproduce:

Variant 1:
- Click Home -> Styles -> Change Styles in the ribbon UI.
- Expand the the drop down of Heading 1 button and click 'Modify'
Expected: 'Style based on' combobox contains all paragraph and linked styles.
Actual: 'Style based on' combobox is empty.
-------------------
Variant 2:
- Click Home -> Styles -> Change Styles in the ribbon UI.
- Click 'New' button.
- Choose 'Style type:' Linked in the combobox.
Expected: 'Style based on' combobox contains all paragraph and linked styles.
Actual: 'Style based on' combobox is empty.