Completed
Last Updated: 15 Apr 2024 13:40 by ADMIN
Release 7.0.0 (2024 Q2)
The DataGrid crashes, if there is a cell with NULL value and when resizing the column to minimum,
Completed
Last Updated: 13 Mar 2024 21:23 by ADMIN
Release 6.8.0

I have a RadbusyIndicator with the following setup: 

<telerik:RadBusyIndicator Grid.Row="0" Grid.RowSpan="2" x:Name="BusyIndicator" BackgroundColor="Red"                       
                        VerticalOptions="Center"
                        AnimationContentHeightRequest="100"
                        AnimationContentWidthRequest="100"
                        AnimationContentColor="#5A4A7B"
                        AnimationType="Animation8"
                        HeightRequest="100" />

On iOS and Mac I cannot interact with the content behind the busy indicator even isbusy is false. On Android and WinUI works as expected. 

The interaction works on iOS and Mac when InputTransparent is set to True or setting HorizontalOptions = Center

Completed
Last Updated: 13 Mar 2024 08:21 by ADMIN
Release 6.8.0
The CheckBox renders a small checkmark when IsAnimated="False" but normal size if IsAnimated="True" on Windows. It's quite noticeable if If you scale up the Length to say 40, the checkbox scales up but the checkmark doesn't scale, leaving it weird looking.
Completed
Last Updated: 13 Mar 2024 08:17 by ADMIN
Release 6.8.0
when setting the TapOutsideToClose to False, so the main area to be active when drawer is opened, on WinUI the main area is not active. I have to close the drawer to interact with the main area.
Completed
Last Updated: 13 Mar 2024 08:17 by ADMIN
Release 6.8.0
Created by: Arif
Comments: 0
Category: DataGrid
Type: Bug Report
1
There is a memory leak in DataGrid on Windows - when the DataGrid control is on the page, the page does not dispose when GC runs.
Completed
Last Updated: 13 Mar 2024 08:17 by ADMIN
Release 6.8.0

windows device with touch capabilities/monitor with touch -> the listview swipes and shows the swipe template, however pressing the button in the swipe or attempting to close the swipe makes the swipe content disappear and the entry to remain in the swiped position.Also multiple swipes are allowed. The swipe cannot be ended, etc. 

 

Using the mouse - > swiping works as expected.

Completed
Last Updated: 13 Mar 2024 08:17 by ADMIN
Release 6.8.0

We have discovered an error when you implement IWindowCreator and create custom window and connect viewmodel via AddSingleton approach

This is the stack-trace:

at System.ThrowHelper.ThrowArgumentOutOfRange_IndexMustBeLessException()

at System.Collections.Generic.List`1.get_Item(Int32 index)

at Telerik.Maui.RadScreen.GetPixelScale(DipScaleType dipScaleType)

at Telerik.Maui.Controls.RadScreenControls.GetPixelScale(VisualElement visualElement, DipScaleType dipScaleType)

at Telerik.Maui.Controls.SkiaSharp.SkiaPainter.GetPixelScale()

at Telerik.Maui.Controls.SkiaSharp.SkiaPainter..ctor(SkiaPainterCacheSettings cacheSettings)

at Telerik.Maui.Controls.Compatibility.DataGrid.MasterArranger..ctor(RadDataGrid dataGrid, NonLayoutPanel root, SkLayoutSlotProvider skLayoutSlotProvider)

at Telerik.Maui.Controls.Compatibility.DataGrid.RadDataGrid.InitArrangers()

at Telerik.Maui.Controls.Compatibility.DataGrid.RadDataGrid.Telerik.Maui.Controls.Compatibility.DataGrid.IGridView.AttachColumn(DataGridColumn column)

at Telerik.Maui.Controls.Compatibility.DataGrid.GridModel.AttachColumn(DataGridColumn column)

at Telerik.Maui.Controls.Compatibility.DataGrid.DataGridColumnCollection.AttachColumn(DataGridColumn column)

at Telerik.Maui.Controls.Compatibility.DataGrid.DataGridColumnCollection.InsertItem(Int32 index, DataGridColumn item)

at System.RuntimeMethodHandle.InvokeMethod(Object target, Void** arguments, Signature sig, Boolean isConstructor)

at System.Reflection.MethodBaseInvoker.InvokeDirectByRefWithFewArgs(Object obj, Span`1 copyOfArgs, BindingFlags invokeAttr)

Completed
Last Updated: 13 Mar 2024 08:17 by ADMIN
Release 6.8.0
Setting SelectedSegmentBackgroundColor property of the SegmentedControl does not take any effect.
Completed
Last Updated: 13 Mar 2024 08:17 by ADMIN
Release 6.8.0
Scenario 1: When ListView is not grouped, then selecting an item and try to group the ListView and collapsing the groups, then exception occurs.

Scenario 2: When ListView is grouped, then selecting an item and ungroup, the item is still selected, then group with collapseall and exception: 

The issue occurs on iOS version > 16.

Completed
Last Updated: 08 Mar 2024 07:12 by ADMIN
Release 5.2.0

Header Text, group header text, do not display some languages characters like Chinese, Thai, etc.

The root reason for this is the fact that the Skia APIs used to draw the text does not support automatic character fallback.

Workaround:

for header text:

<telerik:DataGridTextColumn.HeaderContentTemplate>
    <DataTemplate>
        <Label Text="your text"></Label>
    </DataTemplate>
</telerik:DataGridTextColumn.HeaderContentTemplate>

group header text

<telerik:RadDataGrid.GroupHeaderTemplate>
        <DataTemplate>
            <Label Text="{Binding Group.Key}"/>
        </DataTemplate>
</telerik:RadDataGrid.GroupHeaderTemplate>

column:

<telerik:DataGridTextColumn HeaderText="Name" >
    <telerik:DataGridTextColumn.CellContentTemplate>
        <DataTemplate>
            <Label Text="{Binding Name}"/>
        </DataTemplate>
    </telerik:DataGridTextColumn.CellContentTemplate>
</telerik:DataGridTextColumn>

Completed
Last Updated: 31 Jan 2024 15:50 by Doug
Release 6.7.0

Runtime exception with latest Microsoft .NET iOS sdk 8.0.100 17.0.8490

Exception: 

 TelerikTestForSimulator[24646:547905] *** NSForwarding: warning: object 0x60000289d5c0 of class 'Telerik_Maui_InputElement_RadTextField' does not implement methodSignatureForSelector: -- trouble ahead
 TelerikTestForSimulator[24646:547905] *** NSForwarding: warning: object 0x60000289d5c0 of class 'Telerik_Maui_InputElement_RadTextField' does not implement doesNotRecognizeSelector: -- abort

Completed
Last Updated: 31 Jan 2024 08:52 by ADMIN
Release 6.7.0
With Shell navigation the first time the page with the DataGrid is navigated to, the DataGrid is properly displayed, if you return to the previous page with the Back button and navigate again to the DataGrid page, the control is not visualized on Android.
Completed
Last Updated: 31 Jan 2024 07:55 by ADMIN
Release 6.7.0

Keyboard remains open on iOS when taping outside of Entry control. 

There is a workaround for the MAUI Entry control by setting the HideSoftInputOnTap property on the Pagel, but this property does not work on RadEntry. The keyboard remains open. 

Completed
Last Updated: 31 Jan 2024 07:55 by ADMIN
Release 6.7.0
When having a popup with a content template set and adding items in the popup, the size of the popup does not change dynamically. 

When ContentTemplate is not used, the size changes dynamically. 
Completed
Last Updated: 31 Jan 2024 07:55 by ADMIN
Release 6.7.0
Completed
Last Updated: 31 Jan 2024 07:55 by ADMIN
Release 6.7.0

When programatically trying to add an item to RadComboBox.SelectedItems (in multiple selection mode) similar to this answer, we get an ArgumentOutOfRangeException on iOS.  It works fine on Android.

https://www.telerik.com/forums/radcombobox-binding-selecteditem-not-work-when-selectionmode-is-multiple

The stack trace is strange:

[0:] {"@t":"2023-11-15T20:53:41.1123080Z","@mt":"Unhandled Exception","@l":"Fatal","@x":"System.ArgumentOutOfRangeException: Index was out of range. Must be non-negative and less than the size of the collection. (Parameter 'index')
   at System.Collections.Generic.List`1[[System.Double, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]].get_Item(Int32 index)
   at Telerik.Maui.RadWrapLayoutManager.ArrangeChildren(Rect bounds)
   at Microsoft.Maui.Controls.Layout.CrossPlatformArrange(Rect bounds)
   at Microsoft.Maui.Platform.MauiView.CrossPlatformArrange(Rect bounds)
   at Microsoft.Maui.Platform.MauiView.LayoutSubviews()
   at UIKit.UIApplication.UIApplicationMain(Int32 argc, String[] argv, IntPtr principalClassName, IntPtr delegateClassName) in /Users/builder/azdo/_work/1/s/xamarin-macios/src/UIKit/UIApplication.cs:line 58
   at UIKit.UIApplication.Main(String[] args, Type principalClass, Type delegateClass) in /Users/builder/azdo/_work/1/s/xamarin-macios/src/UIKit/UIApplication.cs:line 94
   at TeamDynamix.Mobile.WorkManagement.Program.Main(String[] args) in C:\\git\\enterprise\\mobile-app\\TeamDynamix.Mobile.WorkManagement\\Platforms\\iOS\\Program.cs:lin
Completed
Last Updated: 31 Jan 2024 07:55 by ADMIN
Release 6.7.0
Image gets a really dark or light when saving in a jpeg format. It works for png.

The issue occurs with SkiaSharp 2.88.6-preview 1.2. It works with versions: 2.88.5, 2.88.4, 2.88.3

The issue is an issue in SkiaSharp
Completed
Last Updated: 21 Dec 2023 13:19 by ADMIN
Release 6.6.0
If a RadComboBox is used as an ItemTemplate for a ListView or CollectionView on MacCatalyst, the application crashes every time you attempt to open the dropdown with the following exception:

System.InvalidOperationException: Event registration is overwriting existing delegate. Either just use events or your own delegate: Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewDelegator`2[Microsoft.Maui.Controls.ReorderableItemsView,Microsoft.Maui.Controls.Handlers.Items.ReorderableItemsViewController`1[Microsoft.Maui.Controls.ReorderableItemsView]] UIKit.UIScrollView+_UIScrollViewDelegate
   at UIKit.UIApplication.EnsureEventAndDelegateAreNotMismatched(Object del, Type expectedType)
   at UIKit.UIScrollView.EnsureUIScrollViewDelegate()
   at UIKit.UIScrollView.add_Scrolled(EventHandler value)
   at Telerik.Maui.Controls.RadPopup.SetPopupIsOpen(Boolean value)
   at Telerik.Maui.Controls.RadPopup.UpdatePopup()
..................
Completed
Last Updated: 21 Dec 2023 13:19 by ADMIN
Release 6.6.0

Programmatic item selection does not work from 6.3.0 version. It works in 6.2.0

When setting the SelectedItem programmatically, selection is not respected in the UI. 

Completed
Last Updated: 21 Dec 2023 13:19 by ADMIN
Release 6.6.0
Created by: Jon
Comments: 0
Category: ComboBox
Type: Bug Report
3
Null Reference exception is thrown when using Native embedding.
1 2 3 4 5 6