Completed
Last Updated: 07 Jan 2025 16:34 by ADMIN
Release 8.0.0 (2024 Q4)

when setting MaxLength to RadEntry and this Entry is used in the Masked control template, the following exception occurs:

System.ArgumentOutOfRangeException: Index and length must refer to a location within the string. (Parameter 'length')
   at System.String.ThrowSubstringArgumentOutOfRange(Int32 startIndex, Int32 length)
   at System.String.Substring(Int32 startIndex, Int32 length)
   at Telerik.RadStringHelper.Replace(String inText, Int32 startIndex, Int32 length, String replacementString)
   at Telerik.Maui.Handlers.RadMaskedEntryHandler.OnShouldChangeCharactersEvent(Object sender, ShouldChangeCharactersEventArgs args)
   at Telerik.Maui.Platform.RadMauiEntry.OnShouldChangeCharacters(Object sender, ShouldChangeCharactersEventArgs args)
   at Telerik.Maui.Handlers.RadTextFieldDelegate.ShouldChangeCharacters(UITextField textField, NSRange range, String replacementString)

Completed
Last Updated: 06 Jan 2025 08:26 by ADMIN
Release 2025 Q1

After updating our Maui application to Maui version 8.0.90, the Entry controls in the WinUI version stopped responding to WidthRequest, HorizontalOptions, or parent container sizes. I thought it was just a Maui problem, but in the relevant issue's notes, I saw that users were having trouble duplicating it unless Telerik UI for .NET Maui was installed (https://github.com/dotnet/maui/issues/24783).

So I created a test app that contains a few Entry controls in various containers:

<?xml version="1.0" encoding="utf-8"?>

<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             x:Class="WinUIEntryBug.MainPage">

    <ScrollView>
        <VerticalStackLayout
            Padding="30,0"
            Spacing="25">

            <Border>
                <Entry />
            </Border>

            <Grid>
                <Grid.ColumnDefinitions>
                    <ColumnDefinition Width="*" />
                </Grid.ColumnDefinitions>

                <Entry Grid.Column="0"></Entry>
            </Grid>

            <Frame>
                <Entry />
            </Frame>

            <Entry />
        </VerticalStackLayout>
    </ScrollView>

</ContentPage>

Without the Telerik components added to the project, the Entry boxes render correctly:

But, when I add a reference to Telerik UI for .NET Maui version 7.1.0 (latest at the time this was written), I get this:

Note: I didn't even add UseTelerik() to the Builder in the MauiProgram.cs, just added the Nuget package.

Changing the WidthRequest, HorizontalOptions, MinWidthRequest, etc. does not affect their size. They do render correctly in iOS and Android, though.

If I then remove the UI for .NET Maui Nuget package, they go back to working.

In our main application, we are heavily dependent on Telerik components and have a substantial number of customers using the Windows version of our application, so this heavily impacts our ability to ship. Particularly since the Maui 8.0.90 fixes other bugs that we needed addressed.

I've attached my sample project with the Telerik UI for .NET Maui package installed. You can remove it to see the normal operation of the Entry boxes.

Completed
Last Updated: 02 Jan 2025 09:20 by ADMIN
Release 5.1.0

when the tab IsEnabled is set to False -> the style of the disabled tab changes, but the the disabled tab is still clickable.

when the tab IsVisible is set to False -> the tab is not visible, but its content is still visible.

Completed
Last Updated: 20 Dec 2024 07:41 by ADMIN
Release 8.0.0 (2024 Q4)
Created by: PalmSens
Comments: 1
Category: Entry
Type: Feature Request
1
Provide an option to style the validation error message and entry border.
Completed
Last Updated: 20 Dec 2024 07:38 by ADMIN
Release 8.0.0 (2024 Q4)
Created by: Nelson
Comments: 1
Category: Entry
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: 16 Dec 2024 13:31 by ADMIN
Release 9.0.0

"System.IO.FileNotFoundException: 'Could not load file or assembly 'Microsoft.Maui.Controls.Compatibility, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. The system cannot find the file specified.'"

Occurs when creating a blank .net maui project using .net9 and adding Telerik MAUI NuGet Package latest version 8.0.0

Repro steps:

1. Create a new dotnet9 basic project in visual studio.
2. Launch it on windows. it runs.
3. Add the Telerik.UI.for.Maui.Trial package, version 8. (don't bother adding the UseTelerik line to MauiProgram.cs, it'll fail either way).
4. Clean and Rebuild the solution.
5. Debug the app on windows again. It fails on launch with a file not found error that seems to relate to:
"Exception thrown: 'System.IO.FileNotFoundException' in Telerik.Maui.Controls.Compatibility.dll"
System.IO.FileNotFoundException: 'Could not load file or assembly 'Microsoft.Maui.Controls.Compatibility, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. The system cannot find the file specified.'

Completed
Last Updated: 16 Dec 2024 13:31 by ADMIN
Release 9.0.0
If you use the Scheduler control inside a Shell app, editing an existing appointment and closing the EditAppointment Dialog leads to an IndexOutOfRangeException on iOS.
Completed
Last Updated: 04 Dec 2024 08:21 by Claus
Release 7.0.0 (2024 Q2)
Created by: Vaibhav
Comments: 2
Category: Button
Type: Feature Request
5
Implement a component that can be used as button and can host templated content.
Completed
Last Updated: 19 Nov 2024 13:27 by ADMIN
Release 8.0.0 (2024 Q4)
DataGridBorderStyle and DataGridCellStyle classes do not support property binding.
Completed
Last Updated: 15 Nov 2024 11:09 by ADMIN
Release 8.0.0 (2024 Q4)
When changing the device culture to be RTL, some PDF documents are not displayed correctly in the PDF Viewer.
Completed
Last Updated: 13 Nov 2024 16:29 by ADMIN
Release 8.0.0 (2024 Q4)
Created by: Bernd
Comments: 4
Category: DatePicker
Type: Feature Request
11

The DatePicker control uses DateTime values for all date properties like Date, DefaultHighlightedDate, MinimumDate, MaximumDate, etc.

With .NET 6 a new DateOnly type was introduced. It would be great if the Date(Only)Picker would support it as well.

For now, I created a custom DateOnlyToDateTime Converter and use it to bind the DateOnly properties from the ViewModel. But native support would be great.

Completed
Last Updated: 13 Nov 2024 16:28 by ADMIN
Release 8.0.0 (2024 Q4)
Created by: Bernd
Comments: 2
Category: TimePicker
Type: Feature Request
1

The TimePicker control uses TimeSpan values for all time properties like Time, DefaultHighlightedTime, MinimumTime, MaximumTime, etc.

With .NET 6 a new TimeOnly type was introduced. It would be great if the Time(Only)Picker would support it as well.

For now, I created a custom TimeOnlyToTimeSpan Converter and use it to bind the TimeOnly properties from the ViewModel. But native support would be great.

Completed
Last Updated: 13 Nov 2024 16:27 by ADMIN
Release 8.0.0 (2024 Q4)
Created by: Rodrigo
Comments: 1
Category: CollectionView
Type: Feature Request
3

Hi Team,

Please consider adding a way to cancel a group's expand/collapse action when the user taps on the group header.

For example, through a GroupTapping event handler that fires just before GroupTapped, and we can execute logic that prevents the operation:

private void RadCollectionView_OnGroupTapping(object sender, RadTappingEventArgs<GroupContext> e)
{
    if (e.Data.Key.ToString() == "GroupToStayPermanentlyExpanded")
    {
        e.Cancel();
    }
}


// which uses this imaginary event args with Cancel method
public class RadTappingEventArgs<T>(T data) : RadTappedEventArgs<T>(data)
{
    public void Cancel()
    {
        // prevents GroupTapped event
    }
}

Thank you,

Rodrigo

Completed
Last Updated: 13 Nov 2024 16:25 by ADMIN
Release 8.0.0 (2024 Q4)
Currently there isn't a direct way to hide the scrollbars in the CollectionView.
Completed
Last Updated: 13 Nov 2024 16:23 by ADMIN
Release 8.0.0 (2024 Q4)
Created by: sorg
Comments: 9
Category: UI for .NET MAUI
Type: Feature Request
11
I'm looking for a control for .net maui for cross-platform desktop development that lets you resize the different sections of your user interface like the GridSplitter control does in WinUI.
Completed
Last Updated: 13 Nov 2024 16:22 by ADMIN
Release 8.0.0 (2024 Q4)
Created by: Hanoch
Comments: 6
Category: DataGrid
Type: Feature Request
12
Provide the option to add paging functionality at the bottom of the DataGrid, so data will be loaded in portions.
Completed
Last Updated: 13 Nov 2024 15:26 by ADMIN
Support for relative source binding in the Listview ItemTemplate/SwipeTemplate
Completed
Last Updated: 13 Nov 2024 15:23 by ADMIN
Release 8.0.0 (2024 Q4)
The ComboBox causes a memory leak on Windows when its dropdown has been shown. 
Completed
Last Updated: 13 Nov 2024 15:23 by ADMIN
Release 8.0.0 (2024 Q4)
Frozen columns sometimes do not display their content when quickly navigate from and back to the page with the DataGrid on Windows.
Completed
Last Updated: 13 Nov 2024 15:23 by ADMIN
Release 8.0.0 (2024 Q4)
1 2 3 4 5 6