I am getting a clang ++ error when I add the Manu.Trial version 6.1.0 and 6.2.0.
This occurs when using a simulator. I am using a Macbook Pro, M2 Pro cpu. It does not appear when running on hardware.
Any ideas on how to get this working?
Severity Code Description Project File Line Suppression State
Hey there,
I am using Telerik UI for my MAUI mobile application.
The only component i am currentyl using is the RadCalendar at .NET MAUI Calendar Documentation - Getting Started - Telerik UI for .NET MAUI
Currently the android version works flawlessly, but when i try to run the simulator on IOS, the simulator crashes with this error;
Severity Code Description Project File Line Suppression State
Hi.
When we set the DayViewSettings DayStartTime and DayEndTime in runtime on appointments changes for a day, the RadCalendar control behaves strange, jumping from day to day.
TimeSpan dayStartTime = todayAppointments.Min(next => next.StartDate.TimeOfDay);
TimeSpan dayEndTime = todayAppointments.Min(next => next.EndDate.TimeOfDay);
calendar.DayViewSettings.DayStartTime
= calendar.MultiDayViewSettings.DayStartTime
= dayStartTime > defaultDayStartTime ? defaultDayStartTime : dayStartTime;
calendar.DayViewSettings.DayEndTime
= calendar.MultiDayViewSettings.DayEndTime
= dayEndTime > defaultDayEndTime ? dayEndTime : defaultDayEndTime;

I have the DataGrid SelectionUnit set to Row and SelectionMode set to Multiple.
I'm trying to add a DataGridBooleanColumn that has a check box in the header and for each row. I would like to bind the IsChecked property of the checkbox to if the Row is selected or not.
The check box in the header would either select all or deselect all depending on if it is checked or not. I was able to use the SelectAll and DeselectAll methods which selects all the rows, but it does not check the checkbox at the row level if the row is selected.
Is there a way to do this?
Hello,
I am trying to use the dataform but as soon as I uncomment one too many input the UI overlaps. In the image bellow after uncommenting RSVPPage the UI is all messed up.
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage
x:Class="Class"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:models="clr-namespace:NameSpace.Models"
xmlns:telerik="http://schemas.telerik.com/2022/xaml/maui"
xmlns:toolkit="http://schemas.microsoft.com/dotnet/2022/maui/toolkit"
xmlns:vm="clr-namespace:NameSpace.ViewModels"
Title="Demo">
<ContentPage.BindingContext>
<vm:NewDemoViewModel />
</ContentPage.BindingContext>
<ContentPage.Content>
<ScrollView>
<telerik:RadDataForm
x:Name="dataForm"
AutoGenerateItems="False"
BindingContext="{Binding Demo}"
ValidationMode="LostFocus">
<telerik:DataFormGroup HeaderText="Text">
<telerik:DataFormRadEntryEditor PropertyName="Host" />
<telerik:DataFormRadEntryEditor PropertyName="Address" />
<telerik:DataFormRadEntryEditor PropertyName="City" />
<telerik:DataFormRadEntryEditor PropertyName="PostalCode" />
<telerik:DataFormRadEntryEditor PropertyName="PhoneNumber" />
</telerik:DataFormGroup>
<telerik:DataFormGroup HeaderText="Text">
<telerik:DataFormRadEntryEditor PropertyName="CreatedOn" />
<telerik:DataFormRadDatePickerEditor PropertyName="PlannedDate" />
<telerik:DataFormRadDatePickerEditor PropertyName="Date" />
<telerik:DataFormRadTimePickerEditor PropertyName="Time" />
<!--<telerik:DataFormRadCheckBoxEditor PropertyName="PersoDemo" />
<telerik:DataFormRadEntryEditor PropertyName="RSVPPage" />-->
<!--<telerik:DataFormRadEntryEditor PropertyName="Ambassador" />
<telerik:DataFormRadEntryEditor PropertyName="InternalNote" />-->
</telerik:DataFormGroup>
</telerik:RadDataForm>
</ScrollView>
</ContentPage.Content>
</ContentPage>Thanks in advance,
Edit: I am using the android emulator with a pixel 5.
I am working on a mobile app for Android and iOS. When running over emulation, it seems to work fine on both platforms.
But when I deploy to my local test iPhone, I get errors when navigating to certain routes. This is the output I see in the Visual Studio output..
What do I need to do to resolve this?
Could not resolve assembly Telerik.Maui.Core.resources, Version=5.2.0.0, Culture=en, PublicKeyToken=null. Details: Could not load file or assembly
RadTreeView during rendering. I tried to comment out all of the Templete overrides in the resource dictionary AND I've also removed the <fluent:MauiIcon> in the ItemTemplate.
Unable to cast object of type 'Telerik.Maui.Handlers.RadButtonHandler' to type 'Microsoft.Maui.Platform.IImageSourcePartSetter'.
at Microsoft.Maui.Platform.ImageSourcePartLoader..ctor(IElementHandler handler, Func`1 imageSourcePart, Action`1 setImage)
at Telerik.Maui.Handlers.RadButtonHandler..ctor(IPropertyMapper mapper)
at Telerik.Maui.Handlers.RadButtonHandler..ctor()
at System.RuntimeType.CreateInstanceDefaultCtor(Boolean publicOnly, Boolean wrapExceptions)
Xaml:
<telerik:RadTreeView
x:Name="treeview"
Grid.Row="2"
AutomationId="treeview"
CheckBoxMode="None"
ItemStyle="{StaticResource Key=TreeViewStyle1}"
ItemsSource="{Binding SqlPlan.SparkPlanInfos}"
LevelIndentation="10">
<telerik:TreeViewDescriptor ItemsSourcePath="Children" TargetType="{x:Type models:SparkPlanInfo}" />
<telerik:RadTreeView.ItemTemplate>
<DataTemplate x:DataType="models:SparkPlanInfo">
<Grid ColumnDefinitions="auto,auto,*,auto">
<fluent:MauiIcon
Margin="-15,5,10,0"
Icon="{Binding NodeName, Converter={StaticResource SparkOperationToIconKey}, ConverterParameter='16', FallbackValue={x:Static fluent:FluentIcons.Accessibility16}}"
IconColor="Black"
IconSize="16" />
<Label
Grid.Column="1"
LineBreakMode="WordWrap"
Text="{Binding NodeName}"
VerticalOptions="Center" />
<Label
Grid.Column="2"
Margin="20,0"
HorizontalOptions="Start"
HorizontalTextAlignment="Start"
IsVisible="{Binding IsSimpleStringUnequalToNodeName}"
LineBreakMode="NoWrap"
MaximumWidthRequest="600"
Text="{Binding SimpleStringWithoutStartingNodeName}"
ToolTipProperties.Text="{Binding SimpleString}"
VerticalOptions="Center" />
</Grid>
</DataTemplate>
</telerik:RadTreeView.ItemTemplate>
</telerik:RadTreeView>
<ContentPage.Resources>

