Unplanned
Last Updated: 26 Mar 2024 09:01 by Martin Ivanov
Created by: Martin Ivanov
Comments: 0
Category: Map
Type: Feature Request
0
Add support for vector tiled services, similar to the Vector Tile Provider in WPF. Also, add support for MBTiles.
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: 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: 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.
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.
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
Completed
Last Updated: 13 Apr 2023 20:08 by ADMIN
Release 2.2.0
Created by: Kalin
Comments: 2
Category: UI for WinUI
Type: Feature Request
3
Add PropertyGrid component.
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: 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.

Completed
Last Updated: 09 Feb 2023 10:41 by ADMIN
Release 2.5.0
Created by: Sébastien
Comments: 0
Category: Chart
Type: Feature Request
1

Hi Team,

Please implement this feature for WinUI =>

If you'd like to see a real test project that demonstrates the problem, you can use the repro attached to my Forum post => Spline series are incorrectly drawn in UI for WinUI.

Thank you,

Sébastien

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

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: 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.
Completed
Last Updated: 26 Oct 2022 06:43 by ADMIN
Release 2.3.0
Created by: Kalin
Comments: 0
Category: PdfViewer
Type: Feature Request
4
Completed
Last Updated: 10 Aug 2022 11:26 by ADMIN
Release 2.2.0
Created by: Stenly
Comments: 2
Category: DataGrid
Type: Feature Request
2
Add support for exporting the DataGrid's content to an Excel file.
Declined
Last Updated: 28 Jul 2022 14:31 by ADMIN
Created by: Tavi
Comments: 3
Category: UI for WinUI
Type: Feature Request
1

I use a lot of very cool UI controls found in the Telerik UI UP control suite; our customers love these controls:

  • RichText for HTML 5 presentation of email messages
  • ScheduleView
  • Diagrams - we use drawings for BP, WF and Data flows
  • Docking - super popular
  • Syntax Editor
  • CardView
  • SpreedSheet
  • Expression Parser
  • Expression Editor
  • Layout control
  • Expander
  • Desktop Alert
  • Transition Control
  • TimeBar
  • Wizard
  • Window
  • SplashSceeen
  • Callout
  • Drag and Drop Interactions
  • Calendar
  • Persistence Framework
  • more..

You guys already know these capabilities don't exist as polished UI controls WinUI 3; we can't adapt and migrate to WinUI 3 / MAUI and lose these excellent presentation and interaction models. What other types of data and information would help your team to prioritize the development of these controls for WinUI 3. I know we can use some WinUI 3 UI control in our WPF apps, but going the other way is impossible. 

https://github.com/microsoft/WindowsAppSDK/discussions/465#discussioncomment-395712

Like many other technology companies out there in the wild, we aren't a UI Control development company as core skills focus on other technologies; however, we need the absolute very best 3rd part commercial grade and hi-fidelity UI controls to start with a base.  So for us, I'm not going to invest in a UI framework that turns the company into a Telerik - that's not what we do. Yes, we do develop custom controls, but it is the exception. 

1 2 3