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: 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.
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

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.
Completed
Last Updated: 20 Jun 2022 07:29 by ADMIN
Release 2.1.0

Currently, the Save and Cancel words in the inline editor buttons are using hardcoded strings. Add LocalizationManager support in order to allow easier customization when translating the application.

In the meantime, you can achieve this effect by extracting the templates of the buttons and replace the hardoced text with LocalizationManager. 

<Application
    x:Class="TelerikWinUIApp7.App"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:localPrimitives="using:Telerik.UI.Xaml.Controls.Grid.Primitives"
     xmlns:primitivesCommon="using:Telerik.UI.Xaml.Controls.Primitives.Common"
    xmlns:core="using:Telerik.Core"
    xmlns:local="using:TelerikWinUIApp7">
    <Application.Resources>
        <ResourceDictionary>
            <ResourceDictionary.MergedDictionaries>
                <XamlControlsResources xmlns="using:Microsoft.UI.Xaml.Controls" />
                <!-- Other merged dictionaries here -->
                <ResourceDictionary Source="ms-appx:///Telerik.WinUI.Controls/Themes/Generic.xaml"/>
            </ResourceDictionary.MergedDictionaries>
            <!-- Other app resources here -->
            <Style TargetType="localPrimitives:DataGridEditRow">
                <Setter Property="CommitButtonStyle">
                    <Setter.Value>
                        <Style TargetType="primitivesCommon:InlineButton" BasedOn="{StaticResource EditRowButtonBaseStyle}">
                            <Setter Property="BorderThickness" Value="1 1 0 1" />
                            <Setter Property="ContentTemplate">
                                <Setter.Value>
                                    <DataTemplate>
                                        <StackPanel Orientation="Horizontal">
                                            <TextBlock Text="&#xe73e;"
                                               FontFamily="{ThemeResource SymbolThemeFontFamily}"
                                               VerticalAlignment="Center"
                                               Margin="15 0 0 0"/>
                                            <TextBlock core:LocalizationManager.Key="Save"
                                                       core:LocalizationManager.PropertyName="Text" Margin="8 0 15 0"/>
                                        </StackPanel>
                                    </DataTemplate>
                                </Setter.Value>
                            </Setter>
                        </Style>
                    </Setter.Value>
                </Setter>
                <Setter Property="CancelButtonStyle">
                    <Setter.Value>
                        <Style TargetType="primitivesCommon:InlineButton" BasedOn="{StaticResource EditRowButtonBaseStyle}">
                            <Setter Property="BorderThickness" Value="0 1 1 1" />
                            <Setter Property="ContentTemplate">
                                <Setter.Value>
                                    <DataTemplate>
                                        <StackPanel Orientation="Horizontal">
                                            <TextBlock Text="&#xe711;"
                                               FontFamily="{ThemeResource SymbolThemeFontFamily}"
                                               VerticalAlignment="Center"
                                               Margin="15 0 8 0"/>
                                            <TextBlock core:LocalizationManager.Key="Cancel"
                                                       core:LocalizationManager.PropertyName="Text" Margin="0 0 15 0" VerticalAlignment="Center"/>
                                        </StackPanel>
                                    </DataTemplate>
                                </Setter.Value>
                            </Setter>
                        </Style>
                    </Setter.Value>
                </Setter>
            </Style>
        </ResourceDictionary>
    </Application.Resources>
</Application>

Completed
Last Updated: 02 Dec 2021 13:01 by ADMIN
Release WinUI 0.5.0
Created by: Kalin
Comments: 1
Category: UI for WinUI
Type: Feature Request
1

For example: WinUI sample app that presents some real time dashboard (gauge or chart controls for example) with a Web API backend.

 

Completed
Last Updated: 13 Sep 2021 11:01 by ADMIN
Release 0.5.0
Created by: Kalin
Comments: 0
Category: UI for WinUI
Type: Feature Request
1
Add Map component.
Completed
Last Updated: 02 Apr 2021 07:09 by ADMIN
Created by: Kalin
Comments: 0
Category: UI for WinUI
Type: Feature Request
6
Currently there is only WinUI UWP support.
Completed
Last Updated: 24 Nov 2020 08:39 by ADMIN
Created by: Kalin
Comments: 0
Category: UI for WinUI
Type: Feature Request
0
Add Barcode component.
Completed
Last Updated: 18 Sep 2020 08:13 by ADMIN
Created by: Stefan
Comments: 0
Category: UI for WinUI
Type: Feature Request
2
This is a request for chart component
Completed
Last Updated: 18 Sep 2020 08:11 by ADMIN
Created by: Kalin
Comments: 0
Category: UI for WinUI
Type: Feature Request
1
Add Gauge component.