Good afternoon,
Does the .NET MAUI RichTextEditor support spell check? Not sure if I am missing something, I know it's supported in the WinForms RichTextEditor.
Thank you!
Hello friends.
I need to download all the components that come with the complete Telerik DevCraft Ultimate package but offline since the computer where I need to download it does not have an Internet connection.
Thank you.
In the WPF version of the Pdf Viewer, there was VerticalScrollOffset and ScrollToVerticalOffset(). I'm not seeing those in the .Net MAUI version of the pdf viewer. I've been trying to use the ScrollIntoView, but I'm finding it difficult to figure out the correct location.
I'm wanting to capture the current scroll location, and then once I reload the pdf, scroll back to that location.
I have a SlideView within a native MAUI ScrollView. Unfortunately the ScrollView does not scroll when the touch event starts on the SlideView. This worked in Xamarin.
I have managed to get SwipeGestureRecognizers for Up and Down working - but since I do not know how far has been swiped, I cannot convert this to a scroll action.
Are there any suggestions on how to fix the scrolling.
I'm trying to build a donet maui app but when it try to compile the project for ios i get this error, i don't now what this means.
/ usr/local/share/dotnet/packs/Microsoft.iOS.Sdk/16.4.7124/targets/Xamarin.Shared.Sdk.targets(3,3): Error: clang++ exited with code 1:
Undefined symbols for architecture arm64:
“_objc_msgSend$weekOfMonth”, referenced from:
-[TKChartDateTimeCategoryAxis getDateComponentValue:] in TelerikUI.a(TKChartDateTimeCategoryAxis.o)
“_objc_msgSend$weekOfYear”, referenced from:
-[TKChartDateTimeCategoryAxis getDateComponentValue:] in TelerikUI.a(TKChartDateTimeCategoryAxis.o)
“_objc_msgSend$weekdayOrdinal”, referenced from:
-[TKChartDateTimeCategoryAxis getDateComponentValue:] in TelerikUI.a(TKChartDateTimeCategoryAxis.o)
“_objc_msgSend$getDateComponentValue:“, referenced from:
-[TKChartDateTimeCategoryAxis numericValue:] in TelerikUI.a(TKChartDateTimeCategoryAxis.o)
-[TKChartDateTimeCategoryAxis updateRangeWithSeries:forKey:] in TelerikUI.a(TKChartDateTimeCategoryAxis.o)
“_objc_msgSend$initWithLow:high:“, referenced from:
-[TKChartRangeDataPoint initWithX:low:high:] in TelerikUI.a(TKChartRangeDataPoint.o)
-[TKChartRangeDataPoint initWithY:low:high:] in TelerikUI.a(TKChartRangeDataPoint.o)
“_objc_msgS (AppPedidosMobile)
<telerik:RadComboBox.Behaviors>
<mct:EventToCommandBehavior EventName="SelectionChanged"
Command="{Binding }"
CommandParameter=""
</telerik:RadComboBox.Behaviors>
Is it possible to map the SelectionChanged event to command with added and removed items as parameters?
Hi,
We have mobile form which has RadDatePicker one of control. It is working on Android without an isssue but not working on iOS (tried with Iphone 14 - 16.6.1) but on simulator(iphone 14 - 16.4 and Iphone 15 - 17) is working fine.
I have crash report from iphone but don't know how to interpret it. Just wondering if you have seen this issue before and have any recommendation.
.net 8.0 and latest Telerik MAUI controls
Thanks
Balwinder
Hi,
I am adding a RadDatePicker programmatically to my MAUI app. It is being displayed on the page but when I click on it I get System.StackOverflowException: 'The requested operation caused a stack overflow.' Am I missing something?
private readonly RadDatePicker _datePicker;
_datePicker = new RadDatePicker();;
I'm implementing the RadCalendar in my MAUI app but there is a problem. I need to remove the current date coloured circle over a date and just change the background colour. of the current date. I've tried to change the template for the day, but that changes all days.
The forms version doesn't have the current day shown as anyything orther than the border of the current day shown. Can this be replicated in the MAUI version?
I am new to Telerik controls and have been migrating a project from Xamarin to MAUI.
I have managed to get the RadSlideView indicator working and styled as I desire, but for some reason the indicators appear above the content instead of below it.
<ResourceDictionary><Style x:Key="IndicatorStyle" TargetType="telerik:SlideViewIndicator">
<Style x:Key="IndicatorStyle" TargetType="telerik:SlideViewIndicator">
<Setter TargetName="ellipse" Property="Ellipse.Fill" Value="{DynamicResource Gray500}" /> <!-- Indicator does not appear without this setter when debugging, i do not know why. App then crashes without the debugger.-->
</Style>
<Style TargetType="telerik:SlideViewIndicatorItem">
<Setter Property="ControlTemplate">
<Setter.Value>
<ControlTemplate>
<Grid WidthRequest="20" HeightRequest="10">
<VisualStateManager.VisualStateGroups>
<VisualStateGroup Name="CommonStates">
<VisualState Name="Normal" />
<VisualState Name="Disabled">
<VisualState.Setters>
<Setter TargetName="ellipse" Property="Ellipse.Fill" Value="{DynamicResource Gray500}" />
</VisualState.Setters>
</VisualState>
<VisualState Name="Selected">
<VisualState.Setters>
<Setter TargetName="ellipse" Property="Ellipse.Fill" Value="{DynamicResource Green}" />
<Setter TargetName="ellipse" Property="Ellipse.WidthRequest" Value="8" />
<Setter TargetName="ellipse" Property="Ellipse.HeightRequest" Value="8" />
</VisualState.Setters>
</VisualState>
</VisualStateGroup>
</VisualStateManager.VisualStateGroups>
<Ellipse x:Name="ellipse"
WidthRequest="8"
HeightRequest="8"
VerticalOptions="End"
Fill="{DynamicResource Gray500}">
</Ellipse>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style></ResourceDictionary>
<telerik:RadSlideView
x:Name="RadSlideView"
IsVisible="{Binding HasSingleShareCertificatePrice, Converter={StaticResource InverseBooleanConverter}}"
ItemsSource="{Binding ShareCertificatePrices}"
IndicatorStyle="{StaticResource IndicatorStyle}"
CurrentIndex="{Binding SelectedIndex, Mode=TwoWay}"
NavigationButtonsVisibility="Collapsed"
InteractionMode="Pan"
>
None of the examples I can find result in the indicator being shown, apart from the strange property above. This property then causes a crash without the debugger.
The Indicators appear above the control, i expect to find them below.