I would like to be able to capture key events from a floating window.
Nothing I've tried seems to fire the OnKeyDown events associated with either the RadForm, FloatingParent or DockWindow. I wired them up a variety of ways including in DockStateChanged. Are the key events even intended to work for a floating window?
I'm using version 2017.2.613.40 of UI for WinForms.
I'm creating a new DockWindow with my user control which appears in the tabbed region in the middle of the RadDock. I then float that window by dragging the tab. Because the user may have several open floating windows, I want the global shortcut keys to function such as Ctrl+S to save everything even if they are in a floating window.
Events DO fire from my control that is hosted in the floating window. However, when one drags the floating window and the focus is on the window, key events don't fire.
What's the proper way to wire of a floating window to capture key events?
I'm using 2017.2.613.40 of UI for WinForms
I have a control hosted in a RadDock floating window. When changes are made to my control I update the title bar of the host window with an asterisk:
"test"
becomes
"test*"
See attachments.
However, the problem is that the change is not immediately visible. I have to drag the window before the title will repaint.
I'm using the following code to update the title bar after I acquire the HostWindow.
hostWindow.Text = value;
hostWindow.Invalidate(false);
hostWindow.Update();
hostWindow.Refresh();
But none of these method calls forces the title to repaint. The text value is clearly getting set properly because as soon as I manually trigger a repaint by dragging the window, the new title value appears.

I have a ListView in Details view, with ShowCheckBoxes set to true. As expected, all ListViewItems have checkboxes next to them.
Is it possible to hide (or disable) checkboxes next to certain ListViewItems?
We are using version 2016.3.1024.40 and i just want to clear the value. I have tried setting the value = null and that does not work. Standard controls that would work just fine. There has to be a simple way to do this. I have about 20 controls that I need to do this to. Just want to take the value/text that is displayed and blank it out.
Thanks in advance.
Mark

Hi,
I'm having this error when loading a layout with a CustomAggregate.
I'm attaching the Layout XML

Hello,
I created GridView with dataset and added two CheckBox type column. In telerik documenation, there is one method to add checkbox on Header
GridViewCheckBoxColumn includeColumn_ = new GridViewCheckBoxColumn(); includeColumn_.DataType = typeof(int); includeColumn_.EnableHeaderCheckBox = true; GridViewCheckBoxColumn excludeColumn_ = new GridViewCheckBoxColumn(); excludeColumn_.DataType = typeof(int); // excludeColumn_.EnableHeaderCheckBox = true;

Hi,
CheckBoxInHeader( http://www.telerik.com/forums/how-can-i-select-multiple-check-boxes-in-radgrid-and-select-all) sample code is not working in Windows 10 operating system , this is working in previous versions.
Please advise.
Thanks.
