When importing an HTML file which contains table should align table cell content left and middle. Instead, it aligns them left and top.
Both browsers and MS Word center the content.
Invalid table layout when resizing a row on the second page
To reproduce:
- Add a table with several rows so there are some rows on the second page.
- Resize a row on the second page with the mouse.
Result: The table layout is not correct after the resize operation
Hi,
Font size in ribbon does not change to the font size of custom style.
See attached video and c# project.
Best regards,
Ziping Wang
The paragraphs in the table are inheriting the negative indent from the previous paragraph.
Workaround: Manually remove the negative indent from the table paragraphs after the table is added.
The workaround in code:
private void RadRichTextEditor1_CommandExecuted(object sender, Telerik.WinForms.Documents.RichTextBoxCommands.CommandExecutedEventArgs e)
{
if (e.Command is InsertTableCommand)
{
var table = radRichTextEditor1.Document.CaretPosition.GetCurrentTable();
table.TableIndent = 0;
if (table != null)
{
foreach (var row in table.Rows)
{
foreach (var cell in row.Cells)
{
foreach (var block in cell.Blocks)
{
var paragrpah = block as Paragraph;
if (paragrpah != null && paragrpah.LeftIndent < 0)
{
paragrpah.LeftIndent = 0;
paragrpah.HangingIndent = 0;
}
}
}
}
}
radRichTextEditor1.RichTextBoxElement.Document.UpdateLayout();
}
}
The cell BackColor should be set when setting the paragraph BackColor.
Workaround: use the table properties dialog to set the back color.htmlProvider.ExportSettings.StylesExportMode = StylesExportMode.Classes;
Hi Team,
We found an issue in Spell Check Feature in RichTextEditor, the Spell Checking Dialog auto-correct the spelling issues on scroll without clicking on the "Change" button.
We are able to reproduce this in the Demo application. please have a look at the below screencast.
https://www.screencast.com/t/EieqvrvSiSq
Thank you.
Introduce support for the IF field. More info here: https://wordmvp.com/FAQs/MailMerge/MMergeIfFields