Completed
Last Updated: 11 Dec 2023 16:06 by ADMIN
Release 6.5.0
After dynamically setting SelectedItems on a multi select RadComboBox, it renders out all the items instead of showing the collapsed tokens view.  I believe this is because RadComboBox.HideTokens is not getting called in this situation.
Won't Fix
Last Updated: 13 Oct 2023 10:09 by ADMIN
Created by: tx55
Comments: 2
Category: UI for .NET MAUI
Type: Bug Report
0

Hello, 
I am trying to use the DataForm but as soon as I uncomment one too many input the UI overlaps. In the image attached, after uncommenting RSVPPage for example the UI is all messed up.

<?xml version="1.0" encoding="utf-8" ?>
<ContentPage
    x:Class="Class"
    xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
    xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
    xmlns:models="clr-namespace:NameSpace.Models"
    xmlns:telerik="http://schemas.telerik.com/2022/xaml/maui"
    xmlns:toolkit="http://schemas.microsoft.com/dotnet/2022/maui/toolkit"
    xmlns:vm="clr-namespace:NameSpace.ViewModels"
    Title="Demo">
    <ContentPage.BindingContext>
        <vm:NewDemoViewModel />
    </ContentPage.BindingContext>
    <ContentPage.Content>
        <ScrollView>
            <telerik:RadDataForm
                x:Name="dataForm"
                AutoGenerateItems="False"
                BindingContext="{Binding Demo}"
                ValidationMode="LostFocus">
                <telerik:DataFormGroup HeaderText="Text">
                    <telerik:DataFormRadEntryEditor PropertyName="Host" />
                    <telerik:DataFormRadEntryEditor PropertyName="Address" />
                    <telerik:DataFormRadEntryEditor PropertyName="City" />
                    <telerik:DataFormRadEntryEditor PropertyName="PostalCode" />
                    <telerik:DataFormRadEntryEditor PropertyName="PhoneNumber" />
                </telerik:DataFormGroup>
                <telerik:DataFormGroup HeaderText="Text">
                    <telerik:DataFormRadEntryEditor PropertyName="CreatedOn" />
                    <telerik:DataFormRadDatePickerEditor PropertyName="PlannedDate" />
                    <telerik:DataFormRadDatePickerEditor PropertyName="Date" />
                    <telerik:DataFormRadTimePickerEditor PropertyName="Time" />
                    <!--<telerik:DataFormRadCheckBoxEditor PropertyName="PersoDemo" />
                    <telerik:DataFormRadEntryEditor PropertyName="RSVPPage" />-->
                    <!--<telerik:DataFormRadEntryEditor PropertyName="Ambassador" />
                        <telerik:DataFormRadEntryEditor PropertyName="InternalNote" />-->
                </telerik:DataFormGroup>
            </telerik:RadDataForm>
        </ScrollView>
    </ContentPage.Content>
</ContentPage>

I am using the android emulator with a pixel 5.

Thanks in advance,

Completed
Last Updated: 03 Oct 2023 08:03 by ADMIN
Release 6.2.0
Created by: Denis
Comments: 3
Category: UI for .NET MAUI
Type: Feature Request
4

I know you are all working on this and are addressing the breaking changes between preview7 to RC1, I wanted to open this Feature Request so that I can be immediately notified when UI for MAUI RC1 support is ready to download and use.

Thank you,

Denis

Completed
Last Updated: 15 Nov 2023 08:59 by ADMIN
Release 6.5.0

Error clang++ exited with code 1:

ld: in /Users/.../Library/Caches/Xamarin/mtbs/builds/SDKBrowserMaui/.../obj/x64/Debug/net7.0-ios/iossimulator-arm64/linker-cache/TelerikUI.a(TKChartAnnotation.o), building for iOS Simulator, but linking in object file built for iOS, file '/Users/.../Library/Caches/Xamarin/mtbs/builds/SDKBrowserMaui/.../obj/x64/Debug/net7.0-ios/iossimulator-arm64/linker-cache/TelerikUI.a'

clang: error: linker command failed with exit code 1 (use -v to see invocation) SDKBrowserMaui C:\Program Files\dotnet\packs\Microsoft.iOS.Sdk\16.4.7089\targets\Xamarin.Shared.Sdk.targets 1274

 

Steps to reproduce:

Run the SDKBrowser example from the Telerik UI for .NET MAUI 6.1.0 package following this instruction: https://www.telerik.com/blogs/running-ios-simulator-windows-net-maui

The paired Mac needs to have an Apple silicon (M1 or M2) chip.
Unplanned
Last Updated: 13 Mar 2024 08:25 by ADMIN

I tested Android and iOS only. Other platforms i cannot test at the moment.

 

Given the following implementation of the Combobox i observ different behaviour if the bound item is a enum or a class.

<telerik:RadComboBox x:Name="a"
                     ItemsSource="{Binding CloudProviders}"
                     SelectedItem="{Binding SelectedCloudProvider}"
                     IsClearButtonVisible="False">
    <telerik:RadComboBox.ItemTemplate>
        <DataTemplate>
            <Grid HeightRequest="40"
                  Padding="10">
                <Label Text="{Binding Title}"
                       TextColor="{DynamicResource DisabledTextColor}"
                       FontSize="14" />
            </Grid>
        </DataTemplate>
    </telerik:RadComboBox.ItemTemplate>
    <telerik:RadComboBox.SelectedItemTemplate>
        <DataTemplate>
            <Grid HeightRequest="40"
                  Padding="10">
                <Label Text="{Binding Title}"
                       TextColor="{DynamicResource DisabledTextColor}"
                       FontSize="14" />
            </Grid>
        </DataTemplate>
    </telerik:RadComboBox.SelectedItemTemplate>
</telerik:RadComboBox>

 

If the Itemssource is a Array of a enum type it works as intended.

If the Itemssource is a Array of classes the initial selected display member is not visible. The moment i tap into the closed combobox, the selected member is visible.

 

The attached screenshots show the page after loading and after touching into the white area(combobox) once.

 

For Localization and more details, we want to use classes. Is this a bug or do we have a issue in our code here?

 

Declined
Last Updated: 16 Oct 2023 11:15 by ADMIN
Created by: Xingyu
Comments: 2
Category: UI for .NET MAUI
Type: Feature Request
0
When testing Telerik UI for .NET MAUI, I found that the column names of the DataGrid do not support Chinese. Is there a solution?
Unplanned
Last Updated: 27 Sep 2023 14:20 by Scott

Currently the SuggestionView does not stay open all the time

I can get it to open on focus by running this code and attaching it to the Focused event

    Focused += SupporterAutoCompleteSearchBar_Focused;

    private void SupporterAutoCompleteSearchBar_Focused(object sender, FocusEventArgs e)
    {
        ShowSuggestions();
    }
 but if I type in the search bar, like a letter "a", and then backspace to get rid of it so I'm left with an empty string, the SuggestionView disappears. The SuggestionView also disappears if I assign a new list, such as through the Remote Search feature in the documentation while the search text is an empty string. I have gotten around these two issues by adding a dispatcher that will call ShowSuggestions(); after 100 milliseconds but I get this flicker effect where the SuggestionView disappears and then comes back again. It's very jarring.

I have looked in the decompiled RadAutoComplete class in visual studio and it looks like the code is set up so the SuggestionView disappears when the Text is null or empty. I would like a bindableproperty for this control that always keeps the SuggestionView open or a workaround that doesn't cause the SuggestionView to disappear in the above circumstances
Completed
Last Updated: 18 Aug 2023 09:44 by ADMIN
Release 6.1.0
Created by: Prabhav
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
4
Provide support for preview version of .NET 8
Completed
Last Updated: 20 Mar 2024 07:46 by ADMIN
Release 6.5.0
Created by: Prabhav
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
2
Provide Support for Telerik UI for .NET MAUI in .NET 8
Unplanned
Last Updated: 31 Jul 2023 15:00 by Tavi
Created by: Tavi
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
6

Hi Team,

This is a Feature Request to ask Progress Software to build a XAML designer for .NET MAUI. Whether it is inside Visual Studio, or a separate application like Blend, the end goal is the same... to provide developers with a designer surface to develop their XAML UI.

Thank you,

Tavi

Unplanned
Last Updated: 24 Jul 2023 09:06 by kevin
Created by: kevin
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
5

For Kendo UI there are figma kits and a themebuilder delivered by Telerik.
We want to he same experience for .NET MAUI.

Is it possible for Telerik to deliver a .NET MAUI figma kit?

Declined
Last Updated: 11 Jul 2023 17:10 by ADMIN
Created by: Gold Star
Comments: 1
Category: UI for .NET MAUI
Type: Feature Request
0
We're using a MUAI Balzor template from VS 2022 that relies on .razor pages rather then xaml. Will a version of this be released that would support this project style? 
Unplanned
Last Updated: 10 Jul 2023 18:30 by ADMIN
When in landscape mode for cropping (and possibly others) the toolbar flashes so you cannot use it.  This appears to be an android problem only as IOS it works. See attached video showing when in landscape mode the crop toolbar flashes making it unusable. I am using an android galaxy Tab A, model SM-T510.
Unplanned
Last Updated: 11 Jul 2023 11:57 by ADMIN
Created by: Tuah
Comments: 1
Category: UI for .NET MAUI
Type: Feature Request
1
Having scrollable horizontal datepicker like in the attached picture, that able to scroll to the left (previous date) or to the right (next day) is nice addition. I find its already availabe in Flutter, React, Angular etc.  Looking forward for The Telerik Devs to make it happen. Thank You.
Completed
Last Updated: 02 Aug 2023 10:41 by ADMIN
Release Microsoft Maui 7.0.92
Chat Room example throws an exception. The undesired behavior is reproduced with the latest .NET MAUI version (7.0.86).

Same behavior happens in SDK Chat examples with typing indicator and Picker inside chat
Duplicated
Last Updated: 15 Jun 2023 05:48 by ADMIN

Currently for all controls I have to have a separate control for the label of the control.  Its annoying.

It would be nice if each of your controls had a Header property and a Control Template property that allows automatic layout of the Header in relationship to the control

So

Enter Name

_______________

It would be one control not currently 2.

 

In addition if the control layout would allow for something like material layout that would be a huge bonus - see below how the Note in the input field moves to the top of the layout.

 
Declined
Last Updated: 15 Jun 2023 12:21 by ADMIN
Created by: Curtis
Comments: 1
Category: UI for .NET MAUI
Type: Feature Request
0

I would like a control to handle Currency that works with the UICulture

 

In the US it would show the input as $ ____.00. or ____.00 (USD) based on UICulture

in other countries it would show the currency symbol based on the UICulture

 

This control should work will all other controls such as grid column input

Duplicated
Last Updated: 15 Jun 2023 12:27 by ADMIN
Created by: Curtis
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
0

I would like a control that is focused on dates.

It would need an input mask based on the current UICulture

So for say the US it would be in the format of mm/dd/yy

And in europe it would be in the format of yyyy/mm/dd

 

Also it should support a short date format of

mm/yyyy

yyyy/mmm

Again based on UICulture

Unplanned
Last Updated: 06 Jun 2023 11:21 by Uvin
Created by: Uvin
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
2

Changing the current culture of the application on the fly does not affect the UI components of the current page. Consider the following scenario: the user selects a preferred language from a list. The application changes the current culture dynamically on the fly:

CultureInfo.CurrentCulture = someCulture;
CultureInfo.CurrentUICulture = someCulture;

This does not update the UI of the current page in any way. All of the UI components are displayed with the language of the original culture. The only way to see them translated to the new language is to reload the entire page.

Unplanned
Last Updated: 01 Jun 2023 19:36 by Joseph

Hi Team,

I prefer C#, so I am looking for resources that are not using XAML. Can you please make a duplicate of all your demos and documentation mentions so that we can toggle between XAML and C#.

Thank you

Joesph