Completed
Last Updated: 09 Mar 2015 14:50 by ADMIN
ADMIN
Telerik Admin
Created on: 14 Jul 2011 08:58
Category: RichTextBox
Type: Bug Report
2
Incorrect measuring when TextOptions.TextFormattingMode="Display" attached property is set on RadRichTextBox or its TextBlocks
When TextOptions.TextFormattingMode="Display" is set on RadRichTextBox, incorrect Measuring causes TextBlocks to not visualize correctly.
2 comments
ADMIN
Aylin
Posted on: 19 Feb 2015 16:19
Hi,

The issue is fixed and will be live with our upcoming Q1 2015 release.

Best Regards,
Aylin,
The Telerik Team
ADMIN
Boby
Posted on: 17 Dec 2014 12:32
Workaround: set TextOptions.TextFormattingMode="Ideal" locally for the RadRichTextBox or for the TextBlocks in it:

        <telerik:RadRichTextBox>
            <telerik:RadRichTextBox.Resources>
                <Style TargetType="TextBlock" >
                    <Setter Property="TextOptions.TextFormattingMode" Value="Ideal" />
                </Style>
            </telerik:RadRichTextBox.Resources>
        </telerik:RadRichTextBox>