Hi,
We are in process of porting Xamarin Forms app to MAUI.
There's some very bad rendering issues when use Telerik RadListView (in Grouped List mode) under iOS that are working fine for Android.
As per screenshot attached - the List Items on iOS are suffering from these problems which we don't see on Android :
Some additional notes on versions :
Screenshots are from Emulators (Android 13 and iOS 16.4) - however same behaviour observed on devices and other os versions too.
Can you please advise further & if an update will be provided to address these problems.
thanks
Niall

I have the following in the old Forms project which I have mostly ported to MAUI, however I have the following which I can't find implemented in MAUI
(forms version)
xmlns:calendarCommands="clr-namespace:Telerik.XamarinForms.Input.Calendar.Commands;assembly=Telerik.XamarinForms.Input"
<telerik:RadCalendar.Commands>
<calendarCommands:ShowAddAppointmentViewCommand />
<calendarCommands:ShowEditAppointmentViewCommand />
<calendarCommands:CalendarUserCommand />
</telerik:RadCalendar.Commands>
</telerik:RadCalendar>None of these appear to have an equivelent in MAUI
Is there a guide to moving these command over or is there a plan in a future update to have them?
Hi, I want to select a week range.
When I select a weekday (just one), I want to highlight selected day for the full week.
For example, if I select a 4 October, the calendar will display week select from 2 October to 8 October.
Thank you in advance.

I created a brand new .NET 8 (.NET MAUI) project and I was able to deploy to iOS successfully, when I installed the Telerik.UI.for.MAUI nuget package (version 6.3.0) I keep getting the following errors:
Xamarin.Messaging.IDB.Local.DeployAppMessageHandler Error: 0 : An error occurred while trying to deploy the app 'NewPreview.app'. Details: Could not install the application 'C:\Users\salmohtasib\AppData\Local\Temp\Xamarin\HotRestart\Signing\NewPreview.app\out\NewPreview.ipa' on the device 12028’s iPhone. Details: ApplicationVerificationFailed|0xE8008014 - Failed to verify code signature of /var/installd/Library/Caches/com.apple.mobile.installd.staging/temp.mW1lmq/extracted/Payload/NewPreview.app/Frameworks/libSkiaSharp.framework : 0xe8008014 (The executable contains an invalid signature.)
Xamarin.iOS.Windows.WindowsiOSException: Could not install the application 'C:\Users\salmohtasib\AppData\Local\Temp\Xamarin\HotRestart\Signing\NewPreview.app\out\NewPreview.ipa' on the device 12028’s iPhone. Details: ApplicationVerificationFailed|0xE8008014 - Failed to verify code signature of /var/installd/Library/Caches/com.apple.mobile.installd.staging/temp.mW1lmq/extracted/Payload/NewPreview.app/Frameworks/libSkiaSharp.framework : 0xe8008014 (The executable contains an invalid signature.)
at Xamarin.iOS.Windows.Installer.ApplicationSession.InstallApp(String appPath, String appBundleId) in D:\a\_work\1\s\src\Tools\Xamarin.iOS.Windows.Client\Installer\ApplicationSession.cs:line 276
at Xamarin.iOS.Windows.Installer.ApplicationSession.Deploy(String appRootFolder, String appBundleId, String appName) in D:\a\_work\1\s\src\Tools\Xamarin.iOS.Windows.Client\Installer\ApplicationSession.cs:line 95
at Xamarin.iOS.Windows.HotRestartClient.Deploy(AppleDevice nativeDevice, String appBundleId, String appBundleName, Boolean& incremental) in D:\a\_work\1\s\src\Tools\Xamarin.iOS.Windows.Client\HotRestartClient.cs:line 250
at Xamarin.Messaging.IDB.Local.DeployAppMessageHandler.<ExecuteAsync>d__5.MoveNext() in D:\a\_work\1\s\src\Messaging\Xamarin.Messaging.IDB.Local\Handlers\DeployAppMessageHandler.cs:line 43: 10/19/2023 00:42:53Z
It looks like it's an issue with libSkiaSharp.
This is my .NET version 8.0.100-rc.2.23502.2
.NET MAUI version 8.0.0-rc.2.9373/8.0.100-rc.2 SDK 8.0.100-rc.2
Visual Studio Version 17.8.0 Preview 4.0
Any help is appreciated, thank you!

Dear Telerik,
We are doing a desktop app with UI look like Chrome. So if we can use RadTabView and Insert/Remove Item by code?

Is it possible to add an icon or any other controls (like a second label perhaps) to the Header of an Accordion? Or are they limited to only have a single label and the arrow symbol?
Thanks,
-Josh
On a simple project with Telerik installed, I can change the FontSize on a simple standard label and Hot Reload works. If I try to change the FontSize on a column in a ListView (in another project), Hot Reload does not work. Settings in Tools\Options all appear to be the same between the projects. Screen Print attached.
<?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"
xmlns:telerik="http://schemas.telerik.com/2022/xaml/maui"
xmlns:viewModels="clr-namespace:peMove.Maui.LookupViewModels"
x:Class="peMove.Maui.Pages.MainPage">
<telerik:RadListView x:Name="listView" ItemsSource="{Binding Source}" MinimumWidthRequest="100" >
<telerik:RadListView.BindingContext>
<viewModels:ViewModel_L />
</telerik:RadListView.BindingContext>
<telerik:RadListView.ItemTemplate>
<DataTemplate>
<telerik:ListViewTemplateCell>
<telerik:ListViewTemplateCell.View>
<telerik:RadBorder x:Name="border01" BorderThickness="0, 0, 0, 1"
BackgroundColor="White"
BorderColor="#b1b1b1">
<Grid RowDefinitions="Auto"
ColumnSpacing="5"
ColumnDefinitions="Auto,*,Auto" Margin="10,10">
<!--Column 1: Icon-->
<telerik:RadBorder x:Name="border02"
Grid.Column="0"
CornerRadius="20"
WidthRequest="40"
VerticalOptions="Center"
HorizontalOptions="Center"
BackgroundColor="{Binding Color}"
Padding="12,6"
Margin="10"
HeightRequest="40">
<Label FontSize="20"
Text="{Binding TypeShort}"
TextColor="#FFFFFFDE"
VerticalOptions="Center"
HorizontalOptions="Center"/>
</telerik:RadBorder>
<!--Column 2: Data-->
<VerticalStackLayout Grid.Column="1"
Spacing="3"
Margin="0,6,0,6"
VerticalOptions="Center">
<Label Text="{Binding Id}"
VerticalOptions="Center"
HorizontalOptions="Start"
FontSize="14"
FontAttributes="Bold"
TextColor="Black"/>
<Label Text="{Binding Name}"
HorizontalOptions="Start"
VerticalOptions="Start"
TextColor="{AppThemeBinding Light='#99000000'}"
FontSize="16"/>
<Label Text="{Binding Status}"
HorizontalOptions="Start"
VerticalOptions="Start"
TextColor="Black"
FontSize="10"/>
</VerticalStackLayout>
<!--Column 3: Quantity-->
<Label Grid.Column="2"
Text="{Binding Quantity, StringFormat='{0:F2}'}"
HorizontalOptions="Start"
VerticalOptions="Start"
TextColor="{AppThemeBinding Light='#7E7E7E'}"
FontSize="16"/>
</Grid>
</telerik:RadBorder>
</telerik:ListViewTemplateCell.View>
</telerik:ListViewTemplateCell>
</DataTemplate>
</telerik:RadListView.ItemTemplate>
</telerik:RadListView>
</ContentPage>
