Currently, ParagraphDefaultSpacingAfter and ParagraphDefaultSpacingBefore are not applied to paragraphs in tables. This should be changed for consistency with the rest of the document.
The caret of RadRichTextBox appears only when the text is selected. Once you try to reorder the letters within its content, it appears.
The issue is caused when ScrollViewer control has different than the default style for the corresponding theme and there are set Padding and/or Margin properties.
Workaround: the template of the Caret should be edited and Style="{x:Null}" should be set on the ScrollViewer which is defined inside the Caret control template.
When the tabbed document becomes a dockable window the ContextMenu Icons are no longer visible.
<telerik:RadDocking x:Name="radDocking">
<telerik:RadDocking.DocumentHost>
<telerik:RadSplitContainer>
<telerik:RadPaneGroup>
<telerik:RadDocumentPane Title="Test">
<telerik:RadRichTextBox x:Name="radRichTextBox" />
</telerik:RadDocumentPane>
</telerik:RadPaneGroup>
</telerik:RadSplitContainer>
</telerik:RadDocking.DocumentHost>
</telerik:RadDocking>
Steps to reproduce: 1. Type a long word in the editor. The word must be longer than the width of the page. 2. Set a hanging indent different than the default one. 3. Select part of the word starting from the beginning of the paragraph. 4. Add an annotation range, e.g. a Comment Result: The hanging indent is not properly reflected in the editor.
The time it takes to apply highlighting to a document in Flow layout mode is more than expected. See ticket 555863 for a sample project and document.
Japanese users use distributed text alignment, which justifies all lines including the last one.
When the caret is positioned in the beginning of a paragraph and a table is inserted, an additional paragraph before the table should not be added. This also includes the case with a blank document. Special case: When there is a table in the document, inserting another just after it should be disabled.
All is marked when None should be selected.
The tooltip shown when hovering the styles in the ManageStylesDialog lists some unrelated values and should be revised.
It should be possible to have several columns in a section of the document. These columns should also be persisted on export/import.
The desired width of the tables is not set to 100 percent. Instead, the width of each column is set to the fixed value in dxa.
This item is duplicated. Please follow the other item at http://feedback.telerik.com/Project/143/Feedback/Details/159291.
Add support for lower-alpha and upper-alpha.
When RadRichTextBox (in Paged layout mode) is in RadTabItem in RadTabControl, ribbon UI buttons and keyboard bindings are not working. Workaround: Use System's TabControl instead of the RadTabControl.
Workaround: Manipulate the clipboard content in CommandExecuting even handler:
private void RichTextBox_CommandExecuting(object sender, Telerik.Windows.Documents.RichTextBoxCommands.CommandExecutingEventArgs e)
{
if (e.Command is PasteCommand)
{
DocumentFragment document = ClipboardEx.GetDocument();
bool hasChangedDocument = false;
foreach (FieldRangeStart fieldStart in document.EnumerateChildrenOfType<FieldRangeStart>())
{
foreach (Span span in fieldStart.Field.GetFragmentByDisplayMode(FieldDisplayMode.Code).EnumerateChildrenOfType<Span>())
{
span.ForeColor = Colors.Black;
hasChangedDocument = true;
}
}
if (hasChangedDocument)
{
ClipboardEx.SetDocument(document);
}
}
}
If there is a paragraph with set background color, the styles for paragraphs are not reset after the colored one and this results in additional background color when importing RTF documents.