In Development
Last Updated: 15 Mar 2024 11:35 by ADMIN

NullReferenceException is thrown if you set the IsChecked property of the RadToggleSwitchButton before the button is added to the visual tree. This happens only when the switch animation is disabled.

To work this around, you can set the AnimationManager.IsAnimationEnabled property of the button to True initially. And then set it back to False on Loaded of the button.

In Development
Last Updated: 14 Mar 2024 13:29 by ADMIN
The last row is allways cut off when you set a custom RowHeight in RadGridView. You cannot scroll far enough, but selecting the last row is still possible using arrow keys.

The issue seems to occur when a `RowHeight` is set in combination with `UseLayoutRounding`.
If you "remove" one of them, the last row appears.


Version of dlls 2024.1.130.70


In Development
Last Updated: 14 Mar 2024 09:14 by ADMIN
The ExportToImage method of the RadDiagram control does not take into account transforms applied to the diagram items.
In Development
Last Updated: 14 Mar 2024 09:11 by ADMIN
Created by: Caesar
Comments: 2
Category: RichTextBox
Type: Bug Report
0
As shown in the attached video.
In Development
Last Updated: 14 Mar 2024 09:08 by ADMIN

When the SelectionMode of RadAutoCompleteBox is changed, the search text is cleared. However, this clears only the Text property of the underlying TextBox element. The SearchText property of the control is not cleared.

To work this around, you can manually set the SearchText after setting the SelectionMode.
this.autoCompleteBox.SelectionMode = AutoCompleteSelectionMode.Multiple;
this.autoCompleteBox.SearchText = null;

In Development
Last Updated: 14 Mar 2024 09:07 by ADMIN
Selecting cells in one direction with the keyboard and then reversing the direction breaks the selection.
In Development
Last Updated: 23 Feb 2024 13:36 by ADMIN

This happens because in the current version of Telerik, the IsTopmost of the ToolWindow that host the floating pane is set to True. That was needed for a related new functionality, but it brings a major behavioral change in the RadDocking control.

To work this around, you can subscribe to the ToolWindowCreated event of RadDocking and set the IsTopmost property of the creating ToolWindow to False.

private void RadDocking_ToolWindowCreated(object sender, Telerik.Windows.Controls.Docking.ElementCreatedEventArgs e)
{
    var window = (ToolWindow)e.CreatedElement;
    window.IsTopmost = false;
}

In Development
Last Updated: 22 Feb 2024 12:31 by ADMIN
The GridViewHeaderRow's DataCellsPresenter element is misaligned with 1 pixel when using the FilteringMode="FilterRow", FrozenColumnsSplitterVisibility="Visible", RowIndicatorVisibility="Collapsed" with the Windows 8 theme.