Unplanned
Last Updated: 15 Dec 2023 14:35 by ADMIN
Created by: David
Comments: 1
Category: UI for .NET MAUI
Type: Feature Request
0

Although Maui has SpreadProcessing, it lacks a matching control. For the very different WPF platform you have one I use, and it would be helpful in Maui to display and readily edit class instances with numerous properties. I realize it would be a challenge to fit into mobile screens, but I do hope you will consider it, as I am trying to get all my current WPF features into my Maui work-alike. Thank you.

David Pressman

Duplicated
Last Updated: 12 Dec 2023 16:43 by ADMIN
Created by: Kevin
Comments: 3
Category: UI for .NET MAUI
Type: Bug Report
0

In certain situations, the RadTabView cuts off part of the header text for some of the headers.  A specific scenario where this is happening is when the following tabs are present: 

  • General
  • Feed
  • Users (0)
  • Relationships (0)
  • Tickets (0)
  • Attachments (0)

The problem is worse when the BorderThickness of the TabViewHeaderItem is set to 1

  <Grid>
    <telerik:RadTabView>
      
      <telerik:RadTabView.HeaderItemStyle>
        <Style TargetType="telerik:TabViewHeaderItem">
          <Setter Property="BorderColor"
                  Value="Black" />
          <Setter Property="BorderThickness"
                  Value="1" />
        </Style>
      </telerik:RadTabView.HeaderItemStyle>
      
      <telerik:TabViewItem HeaderText="General" />
      <telerik:TabViewItem HeaderText="Feed" />
      <telerik:TabViewItem HeaderText="Users (0)" />
      <telerik:TabViewItem HeaderText="Relationships (0)" />
      <telerik:TabViewItem HeaderText="Tickets (0)" />
      <telerik:TabViewItem HeaderText="Attachments (0)" />
      
    </telerik:RadTabView>
  </Grid>

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.
Unplanned
Last Updated: 27 Nov 2023 09:15 by Nico
Created by: Nico
Comments: 4
Category: UI for .NET MAUI
Type: Feature Request
3
For desktop users, it would be great if the Entry field of the Date/DateTime/Time Picker (which is currently readonly) had a MaskedInput mode so they can enter the date directly with the keyboard
Unplanned
Last Updated: 20 Nov 2023 09:12 by ADMIN
Created by: Hanoch
Comments: 1
Category: UI for .NET MAUI
Type: Feature Request
1
I want to implement Captcha in case of some failure in login.
Unplanned
Last Updated: 16 Nov 2023 14:51 by ADMIN
Created by: Daniel
Comments: 6
Category: UI for .NET MAUI
Type: Feature Request
20
Introduce a theme for all controls in the suite.
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.
Completed
Last Updated: 13 Nov 2023 08:21 by ADMIN

Using Telerik UI for .Net MAUI v1.0.1 with latest version MAUI 6.0.400 (Service Release 1) and Visual Studio 2022 17.3.0 Preview 2.0 generates an error,

Severity Code Description Project File Line Suppression State
Error PRI175: 0x80073b0f - Processing Resources failed with error: Duplicate Entry. MauiAppTest C:\Samples\MauiAppTest\MauiAppTest\WINAPPSDKGENERATEPROJECTPRIFILE 1

Declined
Last Updated: 07 Nov 2023 08:45 by ADMIN

Repro steps:

Put a grid inside a RadBusyIndicator with a button.  On a button click, set IsBusy to true, change the height of the grid, and set IsBusy to false.  The grid height will not be updated.

Another way to reproduce is to add children views to the grid while IsBusy is true.  The children will not be rendered after it's done


This is a regression from a recent Telerik update

Duplicated
Last Updated: 25 Oct 2023 08:13 by ADMIN
Created by: Marcel
Comments: 1
Category: UI for .NET MAUI
Type: Feature Request
0

I would love to have an option to display a calendar in the DatePicker date selection popup

 

Best regards,

 

 

Marcel Souza

Pds Informática

Completed
Last Updated: 18 Oct 2023 06:38 by ADMIN
Release 6.3.0
Created by: Gerald McEvoy
Comments: 9
Category: UI for .NET MAUI
Type: Feature Request
44
Add Scheduler component for .NET MAUI
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?
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,

Unplanned
Last Updated: 11 Oct 2023 11:23 by ADMIN
Created by: Claudio
Comments: 1
Category: UI for .NET MAUI
Type: Feature Request
2
It would be glad to have a SplitButton component as done in Blazor.
Completed
Last Updated: 11 Oct 2023 08:02 by ADMIN
Release 6.3.0
Created by: Berney
Comments: 1
Category: UI for .NET MAUI
Type: Feature Request
13
Currently, the only way to get a range slider control in .Net MAUI seems to be to roll my own, or buy into the SyncFusion suite. It doesn't seem like it would be a complicated thing to add, but maybe it's a bigger concern than I would guess given the cross platform nature of MAUI. IN any case, it's a needed control and I want to stay within one vendor's ecosystem.
Completed
Last Updated: 11 Oct 2023 08:02 by ADMIN
Release 6.3.0
Created by: Teddy
Comments: 1
Category: UI for .NET MAUI
Type: Feature Request
4
Your WPF input controls have a SelectionOnFocus enum that describes the behavior when a user gives focus to one of those controls. Can that functionality be added to RadEntry in MAUI?

In addition, as a workaround, I tried adding this code to a RadEntry's Focused event to try to select all text:
private void OnEntryFocused(object sender, FocusEventArgs e)
{
    if (sender is RadEntry entry && !string.IsNullOrEmpty(entry.Text))
    {
        entry.CursorPosition = 0;
        entry.SelectionLength = entry.Text.Length;
    }
}
With this code, the first time I click into the entry, it selects all text as expected, but then when I click out of it and click in again, it doesn't select all text. It just places the caret where I clicked. Then I click out and click back in again and it selects all the text, then the next time, it doesn't work. So it goes back and forth between selecting all text and placing the caret where I clicked.
Duplicated
Last Updated: 11 Oct 2023 06:11 by ADMIN
Severity Code Description Project File Line Suppression State
Error clang++ exited with code 1:
ld: in /Users/jaajitech/Library/Caches/Xamarin/mtbs/builds/inSisMobileApp/a3a8ad44c41ca6a9c305417349b408b3294f1a61364d707faf7d6c17f11ad8b5/obj/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/jaajitech/Library/Caches/Xamarin/mtbs/builds/inSisMobileApp/a3a8ad44c41ca6a9c305417349b408b3294f1a61364d707faf7d6c17f11ad8b5/obj/Debug/net7.0-ios/iossimulator-arm64/linker-cache/TelerikUI.a'
clang: error: linker command failed with exit code 1 (use -v to see invocation) inSisMobileApp C:\Program Files\dotnet\packs\Microsoft.iOS.Sdk\16.4.7107\targets\Xamarin.Shared.Sdk.targets 1272

 

Unplanned
Last Updated: 06 Oct 2023 07:57 by Nelson
Created by: Nelson
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
2
I want to change the clear button icon in RadEntry

For example the RadComBoBox has ClearButtonStyle, while RadEntry has separate properties for clear button color, hover: https://docs.telerik.com/devtools/maui/controls/entry/styling#clear-button-style and no text property
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

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