Unplanned
Last Updated: 30 Oct 2024 11:43 by Parag

when applying Grouping and RowHeight to the DataGrid and expand the row details, the following happens -> The DataGrid in the RowDetails only appears for alternate rows. 

In addition the RowHeight does not apply to the Grouping Row.

Workaround:

Remove the RowHeight from the DataGrid and set the CellContentStyle property to the columns and set the TextMargin to the DataGridTextCellStyle, and ButtonMargin to the DataGridToggleRowDetailsCellStyle. Here is an example when setting them to 0:

            <telerik:DataGridTextCellStyle x:Key="cellStyle"
                                           TextMargin="0"/>


            <telerik:DataGridToggleRowDetailsCellStyle x:Key="toggleStyle"
                                                       ButtonMargin="0"/>


            <telerik:RadDataGrid.Columns>
                <telerik:DataGridToggleRowDetailsColumn CellContentStyle="{StaticResource toggleStyle}"
                                                        IsFrozen="True"/>
                
                <telerik:DataGridTextColumn PropertyName="Country"
                                            CellContentStyle="{StaticResource cellStyle}"
                                            IsFrozen="True" 
                                            CanUserReorder="False"  />
                
                <telerik:DataGridTextColumn PropertyName="Capital" 
                                            CellContentStyle="{StaticResource cellStyle}" />
            </telerik:RadDataGrid.Columns>

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

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

Unplanned
Last Updated: 20 Sep 2024 08:11 by Darwin
If the ListPicker (or any other Picker control) has "DropDown" PickerMode and is placed inside a ScrollView, scrolling with the mouse wheel leaves the dropdown on the same position and away from the picker. With the ComboBox and AutoComplete, the dropdown is scrolled together with the control itself.
Unplanned
Last Updated: 17 Sep 2024 07:29 by Francisco M.
When adding filter descriptors to the DataGrid, the grid filters the data and the filter icon color changes, but when you open the Filtering UI on the concrete column, the distinct values are not checked. 
Unplanned
Last Updated: 03 Sep 2024 10:25 by Erik Damgaard
On Samsung devices the numeric keyboard has the dot and minus sign on same button. When using the numeric masked entry I cannot enter "-" and "." signs.
Unplanned
Last Updated: 30 Aug 2024 12:20 by Eugenio

I can load an image and then  resize it . But if I save it as a docx document and the I reload it, the image has the original size: the resized image is not saved.

 

You can test this in the Telerik MAUI ControlsSamples app, Import export example of the RichTextEditor control.

Unplanned
Last Updated: 30 Aug 2024 08:27 by Shane
We have an Android device with a scanner. The scanner acts as a keyboard wedge and auto types the scanned item (barcode, tags etc.) into the Entry control and simulates the Enter Key being pressed in the background to execute the Completed event. With the .NET MAUI Entry the Completed event is fired, while with Telerik .NET MAUI Entry (RadEntry), the Completed event is not raised.
Unplanned
Last Updated: 13 Aug 2024 10:01 by ADMIN
Created by: Nico
Comments: 3
Category: Scheduler
Type: Bug Report
0

The AppointmentTapCommand is not working on Android in DayView and WeekView, only works on MonthView.
When selecting an appoinment in Day/WeekView the Scheduler scrolls to top

Unplanned
Last Updated: 08 Aug 2024 09:39 by Srilekha

When setting the IsLooping property to "False" through SpinnerStyle property, the infinite looping while scrolling is not disabled.

<ContentPage.Resources>
<Style TargetType="telerik:RadSpinner" x:Key="spinnerStyle">
    <Setter Property="IsLooping" Value="False" />
</Style>
</ContentPage.Resources>

<VerticalStackLayout WidthRequest="300" HorizontalOptions="Center">
    <telerik:RadDateTimePicker x:Name="dateTimePicker"
                                                  SpinnerStyle="{StaticResource spinnerStyle}"
                                                  MinimumDate="2020/01/01"
                                                  MaximumDate="2026/12/31" />
</VerticalStackLayout>

Unplanned
Last Updated: 02 Aug 2024 07:46 by ADMIN

1. Apply filtering to the DataGrid using the distinct values in the Filtering UI,

2. Clear the filter descriptors from external UI.

3. Open the same Filtering UI

Actual: the distinct values in the Filtering UI are still checked. 

Expected: The distinct values should be cleared.

1 2 3 4 5 6