Unplanned
Last Updated: 23 Apr 2024 15:19 by Rei

When loading images in the ImageEditor, some are rotated on 180. EXIF orientation property is not respected

 

Unplanned
Last Updated: 20 Apr 2024 08:47 by Michael

Having a TreeView on a page, and when navigating forward backward to this page, start expand collapse items with many children, the expand indicator is misplaced: 

Unplanned
Last Updated: 19 Apr 2024 12:56 by ADMIN

I set a minimum height on a RadRichTextEditor control so its height would expand as the user typed more into the editor.  This caused different issues on both Android and iOS.

On Android: As the height attempts to expand, it gets caught in an infinite loop where the bottom of the height is shaking.  I believe this is because the call to  UpdateContentSize in OnSizeAllocated causes a re-render of the underlying webview, which causes it to keep resizing over and over.

On iOS: The editor height never expands, but I believe this might be a platform issue and not a telerik issue.

Unplanned
Last Updated: 17 Apr 2024 15:44 by ADMIN
Created by: Tony
Comments: 1
Category: BusyIndicator
Type: Bug Report
0
There is a memory leak in BusyIndicator on iOS - when the BusyIndicator control is on the page, the page does not dispose when GC runs.
Unplanned
Last Updated: 17 Apr 2024 09:15 by Erik Damgaard

I have the following setup:

<telerik:RadTimePicker x:Name="picker" MinuteStep="5" SpinnerFormat="HH:mm"/>

When opening first time the picker already shows time for example 11 : 00

So I did not change the values of hours and minute and clicked OK . The Time property reflects data as 11 : 21 (current time on device ) instead on 11 : 00 which is confirmed by clicking OK.

Unplanned
Last Updated: 16 Apr 2024 11:28 by Michael
When changing the drawer length while the drawer is open, the length does not change, you need to close the drawer and when you open it again, the length applies as expected. 
Unplanned
Last Updated: 15 Apr 2024 12:19 by ADMIN
an InvalidOperationException on a PropertyChanged event after you let the app run for some time and updates in the collection with removing data every 100ms and adding new data every 3 sec
Unplanned
Last Updated: 12 Apr 2024 06:16 by ADMIN
when placing the control in ScrollView the pan gesture for navigation to another item does not work as expected. The CarouselView works as expected. 
Unplanned
Last Updated: 11 Apr 2024 12:25 by Teddy
the gridline shouldn't be disappearing from the last row when the row details are expanded
Unplanned
Last Updated: 11 Apr 2024 10:27 by Rich

The DataGrid will crash when there is a bunch of CollectionChanged events with Grouping enabled. This happens in 6.6.0, 6.7.x and 6.8.x versions of the Telerik DataGrid. 

 

Unplanned
Last Updated: 10 Apr 2024 09:24 by Tom

if you start to reorder an item, and then drop it in the same position that it already had (i.e. abort/cancel the reorder) , the gray color is now stuck. The issue happens only on Android.

Unplanned
Last Updated: 09 Apr 2024 11:13 by Teddy
When the DataGrid is bound to an ObservableCollection and its Clear() method is called in order to reset the source and add new items, the scroll position is not reset to the top.
Unplanned
Last Updated: 09 Apr 2024 10:40 by JP
I have a ListView and when the list contains few elements leaving empty space in the page, if the user taps on the empty space, all ListView items become highlighted.
Unplanned
Last Updated: 09 Apr 2024 09:35 by Huynh

It seems that the default fonts in the RadDataGrid do not support some languages, for example this text "이름" cannot be displayed in Android and WinUI. Rectangles are rendered instead of the correct symbols.

Note that a maui Label can properly display the text.

Unplanned
Last Updated: 07 Apr 2024 09:10 by Hanoch
If you have a TreeView with LoadChildrenOnDemand enanled and CheckBoxMode set to "Recursive", when the user checks an unexpanded item ( which children are not loaded yet), the expand icon disappears and the user is not able to expand the item.
Unplanned
Last Updated: 03 Apr 2024 12:32 by Volodymyr

We’ve encountered an issue related to the inner DataGrid within an outer DataGrid’s RowDetailsTemplate:

Steps to reproduce:

1. Create a DataGrid with editable cells and row details.
2. Inside the RowDetailsTemplate, place a layout (e.g., Grid).
3. Within this layout, embed another DataGrid with editable cells.
4. Start the application and expand row details on the Android platform.
5. Double-tap on any inner DataGrid's cell to open the cell editor. 

At this moment the UI appears unresponsive.

Unplanned
Last Updated: 03 Apr 2024 08:02 by Rodrigo
ArgumentOutOfRangeException is thrown when updating items outside of the viewport in grouped scenario with sticky group headers.
Unplanned
Last Updated: 02 Apr 2024 13:54 by Huynh
DateTimePicker's Accept and Cancel commands are not fired in popup mode on WinUI
Unplanned
Last Updated: 01 Apr 2024 15:34 by Clint
If there is a Picker control inside the ListView ItemTemplate and its SelectedIndex is bound to a property of the used data item, the user cannot select a value  - SelectedIndex is reset to -1.
Unplanned
Last Updated: 29 Mar 2024 14:34 by Ernst
When setting ToolTipProperties.Text of a ButtonToolbarItem to a something other than an empty string, the associated command is never executed.
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage
    x:Class="Toolbar.MainPage"
    xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
    xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
    xmlns:local="clr-namespace:Toolbar"
    xmlns:telerik="http://schemas.telerik.com/2022/xaml/maui"
    x:DataType="local:MainPageViewModel">

    <ContentPage.Resources>
        <ResourceDictionary>
            <Style
                x:Key="ActionMenuButtonToolbarItemViewBaseStyle"
                ApplyToDerivedTypes="True"
                TargetType="telerik:ButtonToolbarItemView">
                <Setter Property="DisplayOptions" Value="Text" />
                <Setter Property="TextColor" Value="White" />
                <Setter Property="FontFamily" Value="{x:Static telerik:TelerikFont.Name}" />
                <Setter Property="FontSize" Value="16" />
                <Setter Property="ToolTipProperties.Text" Value="click to change count" />
            </Style>

        </ResourceDictionary>
    </ContentPage.Resources>
    <ScrollView>
        <VerticalStackLayout Padding="30,0" Spacing="25">
            <telerik:RadToolbar x:Name="toolbarButtons" AutomationId="toolbarButtons">
                <telerik:ButtonToolbarItem
                    Command="{Binding ButtonClickedCommand}"
                    Style="{StaticResource ActionMenuButtonToolbarItemViewBaseStyle}"
                    Text="{x:Static telerik:TelerikFont.IconUpOpen}" />
            </telerik:RadToolbar>
        </VerticalStackLayout>
    </ScrollView>

</ContentPage>

1 2 3 4 5 6