Unplanned
Last Updated: 22 Jul 2024 07:21 by Pavel Krebs
InvalidCastException when removing an item from a sorted bound grid. 
Unplanned
Last Updated: 19 Jul 2024 08:25 by Carlos
 Using the tab key to navigate the cells needs a few extra keystrokes to return to the beginning of the row.
In Development
Last Updated: 18 Jul 2024 12:17 by ADMIN
A memory leak occurs and the memory constantly increases each time the ItemsSource of the RadCartesianChart's series is set to another collection.
Unplanned
Last Updated: 18 Jul 2024 09:05 by Carlos
 Provide a way to hide the edit buttons and have a edit mode similar to the default grid.
In Development
Last Updated: 27 Jun 2024 10:21 by ADMIN
Reordering columns via drag and drop throws an exception.
Unplanned
Last Updated: 21 Jun 2024 11:48 by Cody
Created by: Cody
Comments: 0
Category: DataGrid
Type: Bug Report
0
DataGrid: Column header missing margin.
Unplanned
Last Updated: 21 Jun 2024 08:11 by Martin Ivanov

The scrolling in RadChat feels incosistent and not smooth when having messages with different heights.

To work around this you can modify the ControlTemplate of ChatMessageList in order to set the Background property of the ScrollViewer element to a value different than null. For example, Transparent.

 <Application.Resources>
     <ResourceDictionary>
         <ResourceDictionary.MergedDictionaries>
             <XamlControlsResources xmlns="using:Microsoft.UI.Xaml.Controls" />
			 <ResourceDictionary Source="ms-appx:///Telerik.WinUI.Controls/Themes/Generic.xaml"/>
			 <!-- Other merged dictionaries here -->
         </ResourceDictionary.MergedDictionaries>
			<!-- Other app resources here -->

		<Style  TargetType="chat:ChatMessageList" BasedOn="{StaticResource ChatMessageListStyle}">
			<Setter Property="Template">
				<Setter.Value>
					<ControlTemplate TargetType="chat:ChatMessageList">
						<Border Background="{TemplateBinding Background}" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}">
							<!--The background of the Scrollviewer is set here-->
							<ScrollViewer x:Name="PART_ScrollViewer" 
										  VerticalScrollBarVisibility="Auto" HorizontalScrollBarVisibility="Disabled" 
										  BorderThickness="0"
										  Background="Transparent">
								<ItemsPresenter Margin="{TemplateBinding Padding}" />
							</ScrollViewer>
						</Border>
					</ControlTemplate>
				</Setter.Value>
			</Setter>
		</Style>
	</ResourceDictionary>
 </Application.Resources>

Duplicated
Last Updated: 13 Jun 2024 07:45 by ADMIN
Created by: Martin Ivanov
Comments: 0
Category: UI for WinUI
Type: Feature Request
0
Add RadDocking control, like the one in WPF.
https://docs.telerik.com/devtools/wpf/controls/raddocking/overview2
Unplanned
Last Updated: 10 Jun 2024 15:45 by Martin Ivanov

The list with the RadChat messages disappears when the ImageSource of ImageCardMessage is assigned after the control is loaded.

To work this around, you can pre-set the ImageSource of the image cards using a placeholder image.

Declined
Last Updated: 03 Jun 2024 09:29 by ADMIN
Created by: Biju
Comments: 1
Category: UI for WinUI
Type: Bug Report
0
No form controls are visible when running the program.  Problem affects about half of users
Declined
Last Updated: 03 Jun 2024 09:27 by ADMIN

Hi Support

 

I'm using RadDataGrid on several pages in my application. There a pages where the scrollbar does not appear. On some pages it works.

The structure of the pages is similar. What are your suggestions to look for.

 

Regards,

Hans

Unplanned
Last Updated: 28 May 2024 08:48 by ADMIN

Hello, I tried to implement the sample application from your docs. (https://docs.telerik.com/devtools/winui/controls/raddatagrid/row-details)

But it seems to be not working, the detail area is not displayed completely. Only one column.

I have a similar behavior on another application.

Details:

  • .NET 7
  • Windows 11 Pro Version 23H2 (22631.3155)
  • Telerik WinUI 2.9.0

Unplanned
Last Updated: 24 May 2024 15:03 by Stenly
Setting a value to an enum property, which the PropertyGrid will display, will reset it to the first value of the enum object when the control initially loads.
In Development
Last Updated: 15 May 2024 11:08 by ADMIN
When the RadPropertyGrid control displays nested objects and grouping is applied, expanding the inner group for the first time collapses the parent one. On a second expansion of the inner object, the parent group is not collapsed.
Completed
Last Updated: 07 May 2024 20:01 by ADMIN
Release 2.10.0 (2024 Q2)
Created by: Martin Ivanov
Comments: 0
Category: Chat
Type: Bug Report
0
A memory leak occurs when scrolling messages. Because of the UI virtualization the message visual gets reloaded on scrolling up and down, which subscribes them to a specific event, but the unsubscription doesn't always happen which brings the memory issue.
Completed
Last Updated: 07 May 2024 20:01 by ADMIN
Release 2.10.0 (2024 Q2)
The status indicator of the inline message is positioned on the left side of the message. It should be positioned below it. 
Unplanned
Last Updated: 26 Mar 2024 09:01 by Martin Ivanov
Created by: Martin Ivanov
Comments: 0
Category: Map
Type: Feature Request
1
Add support for vector tiled services, similar to the Vector Tile Provider in WPF. Also, add support for MBTiles.
Completed
Last Updated: 13 Mar 2024 09:40 by ADMIN
Release 2.9.0
The touch pointer capture is never released when you swipe an item in order to show its swipe content. Because the touch capture is never released, the pointer released action is never fired and the drag/drop operation cannot finish. This leads to glitches in the item. Clicking in swipe content can make it disappear. Also, if you are on a device that support both mouse and touch, you can notice the issue by swiping with touch and then mouse move. The mouse/touch device is captured and you will see that item moves on mouse move even if the left button is not pressed.
Unplanned
Last Updated: 11 Mar 2024 12:52 by ADMIN

The default behavior of the WinUI native Popup is to render within the bounds of its owner element. This means if the DataGrid reaches the end of the window and there is not enough space for the filtering control to draw, it will get clipped.

To avoid the clipping and allow the Popup to get displayed outside of the window, the ShouldConstrainToRootBounds property of the Popup should be set to false. 

Add an API in the RadDataGrid control to allow setting the ShouldConstrainToRootBounds option of the Popup.

In the meantime, you can disable the Popup constrain via an implicit Style in App.xaml:

<Application.Resources>
    <ResourceDictionary>
        <ResourceDictionary.MergedDictionaries>                
            <XamlControlsResources xmlns="using:Microsoft.UI.Xaml.Controls" />
            <ResourceDictionary Source="ms-appx:///Telerik.WinUI.Controls/Themes/Generic.xaml"/>
            <!-- Other merged dictionaries here -->
        </ResourceDictionary.MergedDictionaries>
        <Style TargetType="Popup">
            <Setter Property="ShouldConstrainToRootBounds" Value="False" />
        </Style>
        <!-- Other app resources here -->
    </ResourceDictionary>
</Application.Resources>

Unplanned
Last Updated: 11 Mar 2024 09:07 by ADMIN
Created by: Stenly
Comments: 2
Category: NumericBox
Type: Bug Report
1
The RadNumericBox control does not accept decimal values.
1 2 3 4 5 6