Unplanned
Last Updated: 01 Jun 2023 11:19 by Vladimir
When the RadDataGrid is placed inside a Grid's RowDefinition with Auto Height, the row for the last item from the ItemsSource is not rendered. 
Unplanned
Last Updated: 18 Apr 2023 12:26 by Martin Ivanov
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: 12 Apr 2023 06:01 by Martin Ivanov
The length of the LinearBarGaugeIndicator visual (representing the featured measure) is wrong when the RadBulletGraph is hosted in a RadDataGrid cell (via the DataGridTemplateColumn).
Completed
Last Updated: 04 Apr 2023 08:08 by ADMIN
Release 2.6.0
DataGrid is populated with Arsenal, Man United, Liverpool and distinct filter 'Liverpool' is applied via UI.
Adding new Liverpool instances does not change the UI but it should - multiple Liverpool instances should be present in the rows.
Under Review
Last Updated: 11 Jan 2023 15:03 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
Unplanned
Last Updated: 30 Nov 2022 15:42 by Martin Ivanov

Setting the MaxValue, MinValue and Value properties at runtime doesn't work when the settings are done in the Opened event handler of RadDatePicker. The DateTime values of the properties are updated as expected, but this is not reflected in the UI.

To work this around, you can use the Click event of the internal DateTimePickerButton, instead of the Opened event.

private void DatePicker_Loaded(object sender, RoutedEventArgs e)
{
	var btn = this.datePicker.FindChildByType<DateTimePickerButton>();
	btn.Click += Btn_Click;            
}

private void Btn_Click(object sender, RoutedEventArgs e)
{
	var vm = (MainViewModel)this.datePicker.DataContext;
	this.datePicker.MinValue = DateTime.Today;
}

Completed
Last Updated: 31 Oct 2022 07:24 by ADMIN
Release 2.3.0

The following exception is thrown when expanding row details with a height larger than the row height:

ArgumentOutOfRangeException: "Non-negative number required."

Unplanned
Last Updated: 24 Oct 2022 15:49 by Petr

The group header row overlaps the column headers when scrolling to a column that is out of view upon previously resizing the window and the GroupHeaderDisplayMode is Frozen.

Unplanned
Last Updated: 24 Oct 2022 15:20 by Petr
Expanding the row details when the rows have variable heights offsets the scrollbar and brings the expanded row out of view.
Unplanned
Last Updated: 24 Oct 2022 14:24 by Petr
Created by: Petr
Comments: 0
Category: DataGrid
Type: Bug Report
1
Grouping on a touch device by dragging a group header to the group panel drop area results in the drag visual remaining at the drop location and no grouping being performed.
Completed
Last Updated: 13 Sep 2022 06:19 by ADMIN
Release 2.2.0

"Processing Resources failed" compile-time error is thrown when the following nuget packages are referenced together:

- Telerik.ReportViewer.WinUI
- Telerik.WinUI.Controls

It is enough only to reference the packages and try to build the project.

The error appears also if you try to reference the .dll instead of nuget packages. But only in case the Telerik.WinUI.Controls.dll file is not referenced from the installation folder of the Telerik Reporting product.

Error details:

1>WINAPPSDKGENERATEPROJECTPRIFILE : error : PRI175: 0x80073b0f - Processing Resources failed with error: Duplicate Entry.
1>WINAPPSDKGENERATEPROJECTPRIFILE : error : PRI222: 0x80073b0f - Unspecified error occurred.
To resolve this, download the Telerik dlls deployed with the Reporting product and reference them from the same folder, instead of using the nuget packages.

Completed
Last Updated: 20 Jul 2022 12:20 by ADMIN
Release LIB 2022.2.725 (25 July 2022)
RibbonTabs do not have automation children (can be seen in Snoop/UI SPY) when LayoutMode is set to Simplified on load of the application
Completed
Last Updated: 17 Jun 2022 06:03 by ADMIN
Release 2.1.0
Created by: wu
Comments: 2
Category: UI for WinUI
Type: Bug Report
0

VS WPF PdfViewer,When the WinUI PdfViewer show the document, the text is fuzzy.

View the attachments,in the picture,the wpf PdfViewer show the text better.

Completed
Last Updated: 31 May 2022 08:11 by ADMIN
Release 1.2.0
Keyboard navigation cannot be performed unless IsSynchronizedWithCurrentItem is True.
Unplanned
Last Updated: 20 Apr 2022 13:14 by Martin Ivanov

If you have already selected item(s) and then click on a new one to select it without holding Shift or Ctrl, the previous selection is cleared. This action should raise SelectionChanged with items in the RemovedItems collection of the event arguments. You can see this behavior in the native ListBox control. Also, this is how the RadDataGrid control is behaving in Single SelectionMode.

However, currently, if the SelectionMode is set to Extended, the RemovedItems collection doesn't contain any items.

 

 

Unplanned
Last Updated: 08 Apr 2022 10:44 by Martin Ivanov

If you use the DataGridComboBoxColumn or the DataGridTemplateColumn with a ComboBox in its template, you cannot open the drop down of the ComboBox when you click onto it. This reproduces only if you try to click on the arrow icon that opens the drop down or somewhere in the control where no text is presented. If you have already selected item and some text is displayed, you can click onto the text in order to open the drop down.

To workaround this, you can subscribe to the Tapped event of  ComboBox control and set the Handled property of the event arguments to True. If you use the DataGridComboBoxColumn, you can create a custom class that derives from it and override its CreateEditorContentVisual method. This will allow you to get the ComboBox and subscribe to its event.

public class CustomComboBoxColumn : DataGridComboBoxColumn
{
	public override FrameworkElement CreateEditorContentVisual()
	{
		var comboBox = (ComboBox)base.CreateEditorContentVisual();
		comboBox.Unloaded += ComboBox_Unloaded;
		comboBox.Tapped += ComboBox_Tapped;
		return comboBox;
	}

	private void ComboBox_Unloaded(object sender, RoutedEventArgs e)
	{
		var comboBox = (ComboBox)sender;
		comboBox.Unloaded -= ComboBox_Unloaded;
		comboBox.Tapped -= ComboBox_Tapped;
	}

	private void ComboBox_Tapped(object sender, Microsoft.UI.Xaml.Input.TappedRoutedEventArgs e)
	{
		e.Handled = true;
	}
}

 

Completed
Last Updated: 17 Feb 2022 16:16 by ADMIN
Release 1.1.0
Created by: Jeonghoon
Comments: 0
Category: UI for WinUI
Type: Bug Report
0
An exception is thrown at startup when the Telerik.Windows.Controls assembly is used in an unpackaged application.
Completed
Last Updated: 17 Feb 2022 15:58 by ADMIN
Release 1.1.0

The DataGrid ScrollBar is covered by the group header when grouping.

looking the attachment.

Declined
Last Updated: 08 Feb 2022 14:20 by ADMIN
Created by: n/a
Comments: 1
Category: UI for WinUI
Type: Bug Report
0

I have bought a licence and am trying to update my project to use the licenced nuget packages instead of the trial ones. The problem is that I am only able to see the trial packages in the nuget package explorer.

I have run the installer and added https://nuget.telerik.com/v3/index.json as the nuget source. I know that at some point when I first added a package I filled in my credentials, because of reasons the licenced version is tied to another account, if this could have anything to do with it.

Completed
Last Updated: 20 Oct 2021 06:31 by ADMIN
Release 0.6.0
Created by: wu
Comments: 1
Category: NumericBox
Type: Bug Report
0
The numericBox can't update value when using mouse wheel.
1 2