Unplanned
Last Updated: 16 Apr 2024 12:36 by Martin Ivanov

Empty cells appear when the RadGridView contains many cells in the viewport and the view gets resized.

To work this around you can extract and modify the ControlTemplate of GridViewCell, in order to set the MinHeight property of the "PART_ContentPresenter" element to a number close to the RowHeight of the RadGridView control.

Unplanned
Last Updated: 15 Apr 2024 14:35 by Martin Ivanov
Created by: Martin Ivanov
Comments: 0
Category: GridView
Type: Bug Report
0
The CellUnloaded event of RadGridView is not invoked consistent compared to CellLoaded. For example, when you scroll up and down, the CellLoaded event is invoked for each new cell that appears in the view port. However, CellUnloaded is not invoked for cells going outside of the viewport.
Unplanned
Last Updated: 15 Apr 2024 13:52 by Martin Ivanov

InvalidOperationException when closing a RadWindow opened on a separated UI thread. The exception message is: "Cannot use a DependencyObject that belongs to a different thread than its parent Freezable."

To work this around, you can merge the Telerik.Windows.Controls.Navigation.xaml dictionary in the Resources of all RadWindow instances open on another thread and then set their Style property to the RadWindowStyle from the merged .xaml dictionary.

<telerik:RadWindow x:Class="WpfApp84.Window1"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:WpfApp84" xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
        mc:Ignorable="d"  Height="450" Width="800" Style="{DynamicResource RadWindowStyle}">
    <telerik:RadWindow.Resources>
        <ResourceDictionary>
            <ResourceDictionary.MergedDictionaries>
                <ResourceDictionary Source="/Telerik.Windows.Controls.Navigation;component/Themes/GenericWindows11.xaml" />
            </ResourceDictionary.MergedDictionaries>
        </ResourceDictionary>
    </telerik:RadWindow.Resources>
</telerik:RadWindow>

In Development
Last Updated: 15 Apr 2024 09:33 by ADMIN

The fly view is not properly displayed when the second item is clicked and the sub-items are expanded (see attached video). 

Attached is a project with a workaround as well. 

Unplanned
Last Updated: 15 Apr 2024 09:00 by Wolfgang
Provide option to set if the grouping is case-sensitive
Unplanned
Last Updated: 15 Apr 2024 08:44 by ADMIN
When opening a document with a CFF Type1 font an exception is thrown: NullReferenceException: 'Object reference not set to an instance of an object.'
Unplanned
Last Updated: 12 Apr 2024 10:23 by ADMIN
ADMIN
Created by: Tanya
Comments: 7
Category: UI for WPF
Type: Feature Request
24
Enable the customers to create and modify .pptx (PowerPoint) files . They need processing as well as showing such documents.
In Development
Last Updated: 11 Apr 2024 11:38 by ADMIN

When you inherit BingRestMapProvider and BingRestTileMapSource, following the custom map provider approach
https://docs.telerik.com/devtools/wpf/controls/radmap/how-to/howto-custom-provider

the map does not display any tiles. This is due to internal property TopLayer not set correctly to the TileMapSource class.

 
Declined
Last Updated: 11 Apr 2024 08:43 by Petar
Created by: Laurent Kempé
Comments: 14
Category: UI for WPF
Type: Feature Request
33

Hi

I would like to know if Progress Telerik has some plan to port their WPF controls to Avalonia (avaloniaui.net).

 

Thanks

Laurent

Unplanned
Last Updated: 11 Apr 2024 06:26 by Swapnil
Starting the selection with shift from an empty cell expands one more cell the first time.
Unplanned
Last Updated: 11 Apr 2024 05:30 by ADMIN
Introduce a way to set the modifier key used for multi-column sorting.
Completed
Last Updated: 10 Apr 2024 10:36 by ADMIN
Release 2024.1.408
Surrounding a string property with double quotation marks by placing the first one at the end of the new value and the second one at the beginning raises a NullReferenceException.
Unplanned
Last Updated: 09 Apr 2024 13:43 by Martin Ivanov

Make the following selection-related methods of the HeatMapDefinition class "protected internal virtual" instead of "internal virtual". 

  • IsCellSelected
  • IsRowSelected
  • IsColumnSelected

This will allow the developer to properly implement also the selection feature in their custom heat map definition code.

Unplanned
Last Updated: 09 Apr 2024 13:21 by Divya
 RadSpreadsheetSheetSelector add options for disabling the reordering and the editing of the sheets 
In Development
Last Updated: 09 Apr 2024 08:50 by ADMIN

HtmlFormatProvider: Exception when importing a table that has only width set.  In this case, we are trying to measure some elements with float.NaN. 

Workaround: Use the HtmlFormatProvider from the Document Processing library. 

 
Unplanned
Last Updated: 09 Apr 2024 08:43 by ADMIN
TabControl: The tab items and their content are not disposed correctly due to the RadTabItemAutoamtionPeer.
Declined
Last Updated: 09 Apr 2024 08:27 by ADMIN
XObejcts with indirect reference to an image are not rendered.
In Development
Last Updated: 09 Apr 2024 07:00 by ADMIN
Typing and then deleting all in fast succession sometimes fails while using Microsoft Japanese IME.
Completed
Last Updated: 08 Apr 2024 14:24 by ADMIN
Release 2024.1.408

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>

 

Completed
Last Updated: 08 Apr 2024 14:24 by ADMIN
Release 2024.1.408

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)

1 2 3 4 5 6