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.
Unplanned
Last Updated: 11 Mar 2024 09:04 by ADMIN
Created by: Stenly
Comments: 2
Category: NumericBox
Type: Bug Report
1
The RadNumericBox control prevents the user from inputting negative values.
Unplanned
Last Updated: 15 Feb 2024 15:34 by Martin Ivanov

The field filters in the DataGridNumericalFilterControl of DataGridNumericalColumn are using RadNumericBox controls for the input visuals. By default RadNumericBox is limited to values between 0 and 100, which means you cannot enter values outside of this range.

To work this around, you can re-template the DataGridNumericalFilterControl in order to set the Minimum and Maximum properties of the RadNumericBox element to NaN.

<Application
    x:Class="App3.App"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:App3" xmlns:telerikDataGrid="using:Telerik.UI.Xaml.Controls.Grid.Primitives" xmlns:telerikInput="using:Telerik.UI.Xaml.Controls.Input">
    <Application.Resources>
        <ResourceDictionary>
            <ResourceDictionary.MergedDictionaries>
                <XamlControlsResources xmlns="using:Microsoft.UI.Xaml.Controls" />
                <ResourceDictionary Source="ms-appx:///Telerik.WinUI.Controls/Themes/Generic.xaml"/>
            </ResourceDictionary.MergedDictionaries>

            <Style TargetType="telerikDataGrid:DataGridNumericalFilterControl">
                <Setter Property="Template">
                    <Setter.Value>
                        <ControlTemplate TargetType="telerikDataGrid:DataGridNumericalFilterControl">
                            <Grid>
                                <Grid.RowDefinitions>
                                    <RowDefinition Height="Auto"/>
                                    <RowDefinition Height="Auto"/>
                                </Grid.RowDefinitions>
                                <ComboBox x:Name="PART_OperatorCombo"
                                          HorizontalAlignment="Stretch"
                                          ItemsSource="{Binding OperatorsList}"
                                          SelectedItem="{Binding FilterDescriptor.Operator, Mode=TwoWay, Converter={StaticResource FilterOperatorConverter}}"
                                          DisplayMemberPath="DisplayText">
                                </ComboBox>
                                <telerikInput:RadNumericBox x:Name="PART_ValueBox"
                                                            Minimum="NaN"
                                                            Maximum="NaN"
                                              HorizontalAlignment="Stretch"
                                              Value="{Binding FilterDescriptor.Value, Mode=TwoWay}"
                                              Grid.Row="1" Margin="0 10 0 0"/>
                            </Grid>
                        </ControlTemplate>
                    </Setter.Value>
                </Setter>
            </Style>
        </ResourceDictionary>
    </Application.Resources>
</Application>

Unplanned
Last Updated: 07 Feb 2024 11:21 by Martin Ivanov

Dynamically changing the Header of a RadDataGrid column is clearing the header visual's content. This means that you no longer see the header. To reproduce this the SizeMode of the column should be set to Fixed.

To work this around, instead of changing the Header of the column, you can assign the Header initially to a visual element - like TextBox - and change its content (like the Text property). Or alternatively, avoid the Fixed SizeMode.

Unplanned
Last Updated: 26 Jan 2024 14:32 by Martin Ivanov
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: 16 Jan 2024 11:22 by Mike
Reordering columns via drag and drop throws an exception.
Unplanned
Last Updated: 02 Jan 2024 11:32 by Stenly
Created by: Stenly
Comments: 0
Category: Map
Type: Bug Report
1

Exception is raised when zooming is performed.

Unplanned
Last Updated: 01 Dec 2023 09:36 by ADMIN
Created by: Mark
Comments: 1
Category: UI for WinUI
Type: Feature Request
0

Create a combo box control that supports multi selecting, like the WPF version e.g.

https://docs.telerik.com/devtools/wpf/controls/radcombobox/features/multiple-selection

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.
Declined
Last Updated: 25 Aug 2023 15:04 by ADMIN
Created by: wu
Comments: 1
Category: UI for WinUI
Type: Bug Report
0

when the datagrid group the column ,the group header indent,but the general row don't indent .

look the following file.

Completed
Last Updated: 17 Jul 2023 08:49 by ADMIN
Release 2.7.0
Created by: Dominik
Comments: 1
Category: DataGrid
Type: Feature Request
1
At the moment there is a DataGridTimeColumn and a DataGridDateColumn. In the filter flyouts you can filter for a time or a date. We need something like an DataGridDateTimeColumn where you can filter for date and time.
Completed
Last Updated: 11 Jul 2023 11:05 by ADMIN
Release 2.6.0
Created by: Frederic
Comments: 1
Category: UI for WinUI
Type: Feature Request
0
I'd like to see a TimeBar control for WinUI similar to the one in UI for WPF. Thanks.
Completed
Last Updated: 07 Jul 2023 13:21 by ADMIN
Release 2.7.0
Created by: Rick
Comments: 11
Category: TimeBar
Type: Bug Report
0

Hi,

  I am planning to build one of the pages of my software around the amazing Timebar control but I experience many issues.  With this code:


<Grid Height="200">
    <tcontrols:RadTimeBar x:Name="timeBar" Height="150">
        <tcontrols:RadTimeBar.Intervals>
            <tdataViz:YearInterval />
            <tdataViz:MonthInterval />
            <tdataViz:WeekInterval />
            <tdataViz:DayInterval />
        </tcontrols:RadTimeBar.Intervals>

        <tcontrols:RadTimeBar.Content>
            <tdataViz:RadLinearSparkline x:Name="timeSparkline"/>
        </tcontrols:RadTimeBar.Content>
    
    </tcontrols:RadTimeBar>
</Grid>
Many issues happen:

1. The control crashes if the height is too small
2. The control crashes in Visual Studio hot Reload if one of the width or height is changed (so the value becomes 0 or small when the int number is deleted or changed)
3. The control crashes the software if my MainWindow automatically navigates to a page with the TimeBar control in it.  (Frame.Navigate(typeof(Views.PageWithTimeBar));).  The workaround was to add a 200ms delay in the page load...
4. The control crashes if there is no width, so it prevents me to make it full width of my grid which is what I need to keep my software dynamically responsive.  Hard coding a width in the control defeats the purpose of the Grid layout auto width capabilities and will be a problem with devices with different resolution.

The TimeBar is really an amazing and very original control.  I have bought Telerik in big part for it, I really hope that you will be able to address these issues quickly as my software launch date is approaching.  Thank you very much!
Completed
Last Updated: 12 Jun 2023 06:17 by ADMIN
Release 2.7.0
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. 
1 2 3 4 5