In Development
Last Updated: 28 Mar 2024 09:27 by ADMIN

In the Office2019 theme, the RadGridView's ScrollBar elements should have transparent background by design. This is the track's background shown behind the thumb element that allows drag-to-scroll. Currently, the ScrollBars have a gray background.

To work this around, you can define an implicit Style in the App.xaml that targets the GridViewScrollViewer control. Then, set its Background property.

 

<Application.Resources>
    <ResourceDictionary>
        <ResourceDictionary.MergedDictionaries>
            <ResourceDictionary Source="/Telerik.Windows.Themes.Office2019;component/Themes/System.Windows.xaml"/>
            <ResourceDictionary Source="/Telerik.Windows.Themes.Office2019;component/Themes/Telerik.Windows.Controls.xaml"/>
            <ResourceDictionary Source="/Telerik.Windows.Themes.Office2019;component/Themes/Telerik.Windows.Controls.Input.xaml"/>
            <ResourceDictionary Source="/Telerik.Windows.Themes.Office2019;component/Themes/Telerik.Windows.Controls.GridView.xaml"/>
        </ResourceDictionary.MergedDictionaries>
        <Style TargetType="telerik:GridViewScrollViewer" BasedOn="{StaticResource GridViewScrollViewerStyle}">
            <Setter Property="Background" Value="Transparent"/>
        </Style>
    </ResourceDictionary>
</Application.Resources>

 

In Development
Last Updated: 19 Mar 2024 16:31 by ADMIN

When i set the Urisource through a binding and not directly through the xaml the svg image is not shown in combination with paint servers.

I had a look at the code and the issue is that the paint server gets not set again (see attachment)

In Development
Last Updated: 19 Mar 2024 12:10 by ADMIN
Entering 100 in Thai culture (Th-th) does not work in NET Core/7/8.
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: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.