Unplanned
Last Updated: 21 Sep 2023 15:07 by Martin Ivanov
This can be reproduced if you place a ComboBox in the RowDetailsTemplate which selection is bound to a property of the data row's model. Changing the selection in the ComboBox for one row and then expanding another row, will set the selection property of the previous row model to the value from the new model.
Unplanned
Last Updated: 18 Sep 2023 16:27 by Rick

Hi friends,

 

  my custom tooltips never work on the first bar only of the BarSeries, here is a simple example showing this behavior.  There is important data for me in that column, so let's hope it's possible to resolve this.  Many thanks!

Unplanned
Last Updated: 13 Sep 2023 15:01 by Martin Ivanov

Remove the space reserved for the sort indicator in the column header, when CanUserSort is False and therefore the sort indicator is not displayed. The current behavior prevents the user to easily center the header text.

To work this around, you can edit the ControlTemplate of DataGridColumnHeader. In the template, you can update the Visibility of the TextBlock with x:Name set to "SortIndicator" when CanUserSort is False.

Unplanned
Last Updated: 05 Sep 2023 15:03 by Martin Ivanov
If you change the current date and then click on the time segment of the control that allows you to select the time, the date segment is lost. The opposacite is true also - the selected time is lost if you click in the date segment.
To set the correct DateTime, you should first select the date or time, click OK, open the drop down again, select the other component (date or time) and click OK again.
Unplanned
Last Updated: 04 Sep 2023 15:05 by Martin Ivanov
Currently, the first and second filters in the filtering control of the column are case sensitive by default. This is controlled by the IsCaseSensitive of the TextFilterDescriptor. To change the default setting, you should implement custom DataGridTextFilterControl and custom FilterButtonTap command.

Add a setting on the column level to control the case sensitivity more easily.
Unplanned
Last Updated: 05 Jun 2023 15:25 by Martin Ivanov
Currently, the distinct values in the filtering control show the direct value of the cell. For example, if the cell's data context is an object of the custom type MyCustomer, the distinct values will display the ToString() result of MyCustomer.

Allow changing the displayed value. This could be done by introducing a new property for the DataGrid columns (something like DistinctValuesDisplayPath).  
Unplanned
Last Updated: 24 May 2023 14:31 by Stenly
Created by: Stenly
Comments: 0
Category: UI for WinUI
Type: Feature Request
0
Add control similar to the RadPasswordBox of the Telerik UI for WPF product.
Unplanned
Last Updated: 26 Apr 2023 09:32 by Ludwig
Created by: Kalin
Comments: 12
Category: UI for WinUI
Type: Feature Request
71
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 10:53 by Martin Ivanov
Created by: Martin Ivanov
Comments: 0
Category: DataGrid
Type: Feature Request
0
Add corner radius option for the borders that wrap the DataGrid rows.
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).
Unplanned
Last Updated: 21 Mar 2023 11:54 by Martin Ivanov
Created by: Martin Ivanov
Comments: 0
Category: Chart
Type: Feature Request
0

This is the same feature as the TickOrigin in the WPF chart: https://docs.telerik.com/devtools/wpf/controls/radchartview/axes/axis


The property should specify where the ticks originate.

Unplanned
Last Updated: 27 Jan 2023 18:23 by Rodney
Created by: Rodney
Comments: 0
Category: UI for WinUI
Type: Feature Request
3

Hi Team,

This is a request to add a Signature control to UI for WinUI. Where the user can use a Touch or Stylus input to add their signature to the app GUI. This signature can then be saved as either a bitmap or vector file.

Thank you,

Rodney

 

Unplanned
Last Updated: 08 Dec 2022 11:16 by Stenly
Created by: Stenly
Comments: 0
Category: DataGrid
Type: Feature Request
1
We could implement a functionality regarding the right-side frozen columns similar to the one from the WPF RadGridView.
Unplanned
Last Updated: 07 Dec 2022 11:41 by Stenly
Currently, the frozen columns do not have a separator between the frozen and unfrozen columns. We could include a separator similar to the one from the WPF RadGridView.
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;
}

Unplanned
Last Updated: 22 Nov 2022 14:52 by Martin Ivanov
The DatePicker allows you to set the MinValue and MaxValue properties that limits the selectable dates in the control. In that case, all values outside of the min/max range will be displayed as greyed out (disabled) numbers for the different segments - day, month, year. 

If the Value of the control is not explicitly set, the DateTime.Now value is used. After the change of the Value through the UI, the currently selected DateTime will be copied based on the changed segment (day, month or year) along with its time part (ex: 4:46PM). In that case, you may not be able to select the last value assigned to MaxValue of the control, because the value change behavior is not very obvious. 

For example: the user can set MaxValue to 29 Nov 2022 12:00:00AM, and the current value can be 22 Nov 2022 4:49:23PM. The time value is not visible. If you open the drop down with the segments, you will won't be able to select 29 Nov, because that would mean that you will select 29 Nov at 4:49:32PM, which has a bigger value then the explicitly assigned MaxValue which is the 29 Nov, but 12:00:00AM.

Add an API that allows you to skip the time part when comparing dates, and use only the Date of the DateTime objects.
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.
1 2 3