Unplanned
Last Updated: 31 Oct 2018 07:53 by ADMIN
ADMIN
Telerik Admin
Created on: 03 Aug 2012 16:14
Category: RichTextBox
Type: Bug Report
2
RadRichTextBox: ImageMiniToolBar and SelectionMiniToolBar stay on top of all windows even if it the window of the associated RadRichTextBox had lost focus
Popups (ImageMiniToolBar and SelectionMiniToolBar) stay on most top (act as if "Always on Top" is set to them) even if they had lost focus. 

Workaround: Attach to LostFocus or LostKeyboardFocus events and hide the toolbar in the handler:
this.radRichTextBox.LostFocus += (sender, e) =>
{
    this.radRichTextBox.SelectionMiniToolBar.Hide();
    this.radRichTextBox.ImageMiniToolBar.Hide();
};

0 comments