Unplanned
Last Updated: 04 Oct 2016 08:03 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 14 Sep 2016 07:23
Category: RichTextEditor
Type: Bug Report
1
FIX. RadRichTextEditor - caret is displayed although the font familiy drop down from the RichTextEditorRibbonBar is focused
To reproduce:

1. Add a RichTextEditorRibbonBar on the form
2. Add a RadRichTextEditor on the form.
3. Set the RichTextEditorRibbonBar.AssociatedRichTextEditor property.
4. Run the application. You will notice that the caret for the RadRichTextEditor is displayed and the user expects to start entering text when pressing the keyboard. However,  the focused control in this case is the font family drop-down and it accepts the input. 

Workaround: focus the RadRichTextEditor in the Form.Shown event:

Private Sub Form1_Shown(sender As Object, e As EventArgs) Handles MyBase.Shown
    Me.RadRichTextEditor1.Focus()
End Sub
0 comments