Need More Info
Last Updated: 24 Oct 2024 09:34 by ADMIN
Created by: Itzik
Comments: 5
Category: UI for .NET MAUI
Type: Bug Report
1

Our product is also in use in Hebrew language (RTL) and i noticed that hebrew letters are not shown in the RadDataGrid.

I assume its a but since in other controls i use i havnt encountered this issue (yet).

 

 

Please please fix...
This is very important for us.

Many thanks in advance!

Unplanned
Last Updated: 23 Oct 2024 21:01 by ADMIN
If the Chart control is nested inside a ScrollView, it is not sized properly on Android - it seems it occupies the available space, but the chart itself ( the axes and the series) are shrunk in size.
Declined
Last Updated: 22 Oct 2024 06:59 by ADMIN

In most situations, the Segmented control is working as expected but it seems that it uses an optimization that is making it not to show the currently selected item in the UI.

In my page I have a list of items that are shown or hidden according to what the user selects.

Each item has a template and there is a template using the Segmented control.

If in the 1st item of the list I select the first tab in the segmented control, refresh the list, and select the 2nd tab of the first item in the new list,

everything work fine, I can switch between the lists and everything is ok.

But if I select the same tab, after I switch the content of the list, even having SelectedIndex, SelectedItem and ItemSource correct, it doesn't display the selected tab.

I tried a lot, calling OnPropertyChanged in many places, using SelectedItem, SelectedIndex, both.

No way for it to work.

It seems like an optimization that doesn't redraw the selected item by mistake if it is equal in value to the previous one.

For you to better understand our case, the page is a row of a table, where the user scroll through rows of this table.
If in the 1st row he selects the 1st tab and in the 2nd row too, if he tries to move back to row 1, the displayed tab is not shown.

Thanks in advance,

Jones Abramoff

In Development
Last Updated: 22 Oct 2024 06:42 by ADMIN
Frozen columns sometimes do not display their content when quickly navigate from and back to the page with the DataGrid on Windows.
In Development
Last Updated: 21 Oct 2024 13:06 by ADMIN
Scheduled for 8.0.0 (2024 Q4)
The ComboBox causes a memory leak on Windows when its dropdown has been shown. 
In Development
Last Updated: 21 Oct 2024 13:06 by ADMIN
Scheduled for 8.0.0 (2024 Q4)

When setting BorderBrush, BorderThickess, FocusedBorderBrush and FocusedBorderThickness do not apply on the entire entry control, they apply only on bottom. 

<VerticalStackLayout>
    <telerik:RadEntry Text="Hello World" TextColor="DarkRed" 
                        Background="Wheat"
                        FocusedBorderBrush="Yellow"
                        FocusedBorderThickness="10"
                        x:Name="entry" 
                        BorderBrush="DarkRed"
                        BorderThickness="8"
                        CornerRadius="5,7,7,5"
                        WidthRequest="150"/>
</VerticalStackLayout>

And the result:


 

Workaround: 

Place the entry in a RadBorder:

<telerik:RadBorder BorderColor="Red" CornerRadius="5,7,7,5" BorderThickness="4,4,4,4">
              <telerik:RadEntry Text="Hello World" TextColor="DarkRed" Background="Wheat" x:Name="entry" /> </telerik:RadBorder>

Unplanned
Last Updated: 14 Oct 2024 10:24 by ADMIN

When increasing the system font size to a larger vale, the numbers in the date and time picker are too big but the height of the items do not change. 

 

 

 

Unplanned
Last Updated: 08 Oct 2024 11:51 by Teddy
Having a DataGrid inside RowDetails. When sorting the control, the control does not resize as expected. 
working on WinUI. 
Unplanned
Last Updated: 08 Oct 2024 06:16 by Michael

I tried to implement the toolbar for the PDF viewer, I'm getting stray hyphens added into the toolbar UI on left and right when overflow mode is set to Scroll.

The behavior also occurs in ImageEditorToolbar and RichTextEditorToolbar.

In Development
Last Updated: 07 Oct 2024 13:29 by ADMIN
Scheduled for 8.0.0 (2024 Q4)
In Development
Last Updated: 07 Oct 2024 13:29 by ADMIN
Scheduled for 8.0.0 (2024 Q4)
If you type, for example, `3.3` into the numeric input, then press the backspace once, this becomes `3` instead of `3.`.
Unplanned
Last Updated: 02 Oct 2024 13:03 by Shobana
Just using .UseTelerik(), hebrew resource strings do not load properly.
Unplanned
Last Updated: 02 Oct 2024 07:30 by Peter
When the DataGrid contains no rows and the horizontal scrollbar is visible - scrolling to the right paints a white area over column headers.
Unplanned
Last Updated: 02 Oct 2024 05:44 by Jayward
There is a memory leak in the CollectionView on iOS/MacCatalyst - when the CollectionView control is on the page, the page does not dispose when GC runs. Same behavior happens with the RadListview.
Unplanned
Last Updated: 01 Oct 2024 15:11 by Andrew
when a RadDataGrid has collapsed groups, trying to edit a row that comes after one of the collapsed groups (and a little bit of scrolling) is impossible, because the RadDataGrid scrolls back to the top.
Unplanned
Last Updated: 25 Sep 2024 10:50 by ADMIN

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.

Unplanned
Last Updated: 25 Sep 2024 07:54 by Jayward
There is a memory leak in the TreeView on iOS/MacCatalyst - when the TreeView control is on the page, the page does not dispose when GC runs.
Unplanned
Last Updated: 25 Sep 2024 07:21 by Jayward
There is a memory leak in the DataGrid on iOS/MacCatalyst - when the DataGrid control is on the page, the page does not dispose when GC runs.
In Development
Last Updated: 24 Sep 2024 07:58 by ADMIN
Scheduled for 8.0.0 (2024 Q4)

This was a regression when I upgraded to 7.1.0. 

Before, when the editor was empty and had a height set, you could tap anywhere to start editing.  Now, I can only start editing by tapping the top of the editor.

I tested this only on Android.

Unplanned
Last Updated: 20 Sep 2024 11:49 by ADMIN
Created by: Erik Damgaard
Comments: 4
Category: Popup
Type: Bug Report
5

When adding for examples, ComboBox/AutoComplete, Pickers inside RadPopup and open the pickers/combo dropdown. Then close the RadPopup, the popup of the pickers/combo/autocomplete stays open. The behavior occurs on iOS, MacCatalyst and WinUI. On Android exception is thrown.

1 2 3 4 5 6