Completed
Last Updated: 31 Jan 2024 08:56 by ADMIN
Release 2024 Q1

System.ArgumentOutOfRangeException: Year, Month, and Day parameters describe an un-representable DateTime.

This issue happens when using DayView, MultiDayView, Month view modes and when scrolling through the calendar to change the selected date. 

The issue happens on specific devices with android 14, Pixel 7, Galaxy S22. 

Workaround: 
Setting the time zone in calendar renderer to the DayView timelabelformat

public override bool TrySetViewMode(CalendarViewMode view, bool isAnimated)
        {
            if (view == CalendarViewMode.Day)
            {
                Control.DayView.DayEventsViewStyle.TimeLabelFormat.TimeZone = Java.Util.TimeZone.GetTimeZone("add time zone here");
            }

            return base.TrySetViewMode(view, isAnimated);
        }

Completed
Last Updated: 12 Mar 2024 16:12 by ADMIN
Release 2024 Q1

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
Completed
Last Updated: 31 Jan 2024 08:57 by ADMIN
Release 2024 Q1
The exception is easily reproducible in SDK Browser on iOS. Start the LoadOnDemandCommand or LoadOnDemandEvent example to see the exception. The LoadOnDemandCollection seems to work correctly, however.

The ListViewLoadOnDemandCollection can be used instead of the command/event as a temporary workaround, until the bug gets fixed.
Completed
Last Updated: 19 Feb 2024 07:33 by ADMIN
Release 2023.3.1010
Created by: Manikandan
Comments: 0
Category: PdfViewer
Type: Bug Report
0
The values in the forms are not displayed in the document visualized from the viewer. 
Completed
Last Updated: 31 Jan 2024 09:02 by ADMIN
Release R3 2023
The commands in ImageEditor can be executed as soon as an ImageSource is specified, but before the the actual image is loaded. Since the image is loading asynchronously, executing a command too early causes racing conditions and random crashes.
Completed
Last Updated: 20 Sep 2023 08:44 by ADMIN
Release R2 2023 SP1
MonoTouchException is thrown when using LoadOnDemand with ListViewLoadOnDemandCollection on iOS 16.
Completed
Last Updated: 19 Jul 2023 14:24 by ADMIN
Release R2 2023 SP1

Exception occurs when there are no items in the collection and load on demand mode is automatic: 

public ViewModel()
{
    this.Source = new ObservableCollection<string>();
    //for (int i = 0; i < 14; i++)
    //{
    //    this.Source.Add(string.Format("Item {0}", i));
    //}
    this.LoadItemsCommand = new Command(this.LoadItemsCommandExecute);
}

Completed
Last Updated: 31 Jan 2024 09:04 by ADMIN
Release R2 2023 SP1

when using the justify toolbar item it does not justify the text. 

Completed
Last Updated: 31 Jan 2024 09:06 by ADMIN
Release R2 2023
For some TrueType fonts, the spaces are displayed as rectangles.
Completed
Last Updated: 19 Jul 2023 14:24 by ADMIN
Release R2 2023 SP1
Null Reference Exception is thrown when the ListView is initially grouped and navigating back to page where is the ListView and new RangeCollection is assigned to the control.
Completed
Last Updated: 08 Jun 2023 09:05 by ADMIN
Release R2 2023
Paths in the documents are not visualized in the PdfViewer. 
Completed
Last Updated: 15 Mar 2023 12:03 by ADMIN
Release R1 2023 SP1

 

In Xamarin R1 2023 (version 2023.1.117), there's an issue which Combobox placeholder is not showing when search is enabled. Placeholder only shown when isEditable is set to false.

This issue only present in the latest version. As I've tried to downgrade to the old version and it's working fine. 

Please fix it, thanks.

Completed
Last Updated: 15 Mar 2023 12:02 by ADMIN
Release R1 2023 SP1
Telerik.UI.for.Xamarin NuGet package is missing Telerik.UI.for.Xamarin.Documents.Fixed.FormatProviders.Image.Skia package reference.
Completed
Last Updated: 19 Jul 2023 14:23 by ADMIN
Release R2 2023 SP1
The ListView items are not rendered correctly when manual load on demand is used.
Completed
Last Updated: 30 Jan 2023 07:49 by ADMIN
Release R1 2023

When placing and RadEntry in Popup, Object disposed exception is thrown. 

The issue cannot be reproduced with Telerik UI for Xamarin version 2022.2.624.1

Workaround until a fix for this issue is provided: 

1. Use Telerik UI for Xamarin version 2022.2.624.1

or:

2. Use Xamarin.Forms Entry instead.

Completed
Last Updated: 31 Jan 2024 09:01 by ADMIN
Release R3 2023
Some Image XObjects are imported but not displayed in PdfViewer.
Completed
Last Updated: 28 Oct 2022 05:58 by ADMIN
Release R3 2022.3.1026

With iOS 16 some changes are introduced to the UICollectionView. This breaks the layout of the ListView with dynamically sized items.

Completed
Last Updated: 30 Jan 2023 07:47 by ADMIN
Release 2022.3.1026
Created by: Giampaolo
Comments: 0
Category: UI for Xamarin
Type: Bug Report
3

Unable to deploy Xamarin app with Telerik Document Processing dlls when AOT is true in Release configuration.

An error with text like is displayed in Visual Studio:

XABLD7028: System.IO.FileNotFoundException: Could not find file '...\....Droid\obj\Release\120\aot\armeabi-v7a\libaot-Telerik.Documents.Fixed.dll.so'

 

Completed
Last Updated: 14 Sep 2022 13:55 by ADMIN
Release R3 2022
After updating Xamarin.Forms to version 5.0.0.2478, the WatermarkText doesn't show in RadEntry on Android anymore.
Completed
Last Updated: 22 Jun 2022 11:41 by ADMIN
Release R2 2022 SP1

DataBindingComplete event of the DataGrid should be fired when the associated data (ItemsSource) has been successfully bound to the control or any data operation like Group, Sort or Filter is applied.  Currently the event handler is not called as expected.

 

1 2 3 4 5 6