Unplanned
Last Updated: 30 Mar 2016 11:23 by ADMIN
ADMIN
Dimitar
Created on: 11 May 2015 14:25
Category: RichTextEditor
Type: Bug Report
4
FIX. RadRichTextEditor - the SelectionMiniToolBar is not closed when the control loses focus.
To reproduce:
- Add two tabs in a PageView
- Add RadRichTextEditor in the second tab
- Select some text to show the mini toolbar 
- Select the first page.

Workaround
void radPageView1_SelectedPageChanged(object sender, EventArgs e)
{
    if (radPageViewPage2.IsContentVisible == false)
    {
        radRichTextEditor1.RichTextBoxElement.SelectionMiniToolBar.Hide();
    }
}

0 comments