Hello,
We have recently migrated from Telerik UI for Xamarin to Telerik UI for .NET MAUI.
One thing we are trying to wrap our heads around is how to set a small coloured dot next to the appointment on the month view for telerik:RadScheduler, rather than a background. I've attached 2 screenshots. One is Xamarin with a dot, where it was a simple XAML shape property. And MAUI which uses a background.
I would appreciate it if someone would steer us toward the right direction please :)
Hi Team,
Recently in IOS I found that the RadSlideDrawer content when pulled out it has gap on the top and bottom in IOS, as shown in below image:
The same code when deployed in Android it has no gap.

I have the following:
<telerik:RadListView
Margin="10"
IsPullToRefreshActive="{Binding LoadItemsTask.IsNotCompleted}"
IsPullToRefreshEnabled="True" Grid.Row="2" x:Name="listView" ItemsSource="{Binding Items}" >
(...)
</telerik:RadListView>LoadItemsTask is called at start and its value is True for a few seconds but the refresh indicator only shows up (and eventually hides) when the pull gesture is called, it does not respond to the initial value of the property.
Shouldn't this property be respected always, not just when the gesture is called?

Is there a way to limit DataTable columns added when AutoGenerateColumns = true ?
Example: DataTable has columns A, B, C, D, E and I want everything but A and D to be in the RadDataGrid
Not having success by finding the column by name and setting IsVisible = false.
Another related question. Is there a way in C# to set column properties for auto generated columns like width or displaying checkbox for bool columns?
Thanks !
Hello there. I have a complex PDF document with technical CAD constructions. The document contains text added by the user (remarks / annotations) afterwards. The problem is, the text is displayed upside down and stretched. See appended files. The text is displayed correctly in other PDF apps or on PC.
It also needs 10 to 15 seconds in "Release"-mode to render the document on Android (depending on performance of device). "Google Drive-PDF Viewer" app needs 1 second to render the Pdf. On an iPhone the rendering is still slow, but faster in general.
In Xaml RadPdfViewer:"EnableHardwareAcceleration" is set to "True".
Regards,
Martin
Hi,
In the chat visual structure is it possible to have a microphone icon within the message area? This is to support the user speaking their message as oppose to typing it via the app keyboard.
Thanks,
Euan

Hi Team,
I have a requirement where have placed few controls inside RadScrollView and, when launched the app the contents inside the RadScrollView are visible in Android whereas when launched the same app in IOS the content is not visible.
Have added the following screens for your reference:
IOS:
Android:
In default MAUI controls you can specify a header and footer template for your collectionview.
Is this possible with the new Telerik control? I only saw group options in the documentation.
Thanks

Using the RadRegexMaskedEntry below but I cannot get the value to bind to my model. Unless I'm wrong, the documentation suggests Value is the right attribute to use but it never binds when a value is entered. I know my model is correct because I have about 6 other controls on this page (mostly RadComboBox and RadEntry) including the 'Registered for GST' RadCheckBox and they all bind correctly.
<Grid Grid.Row="6" Grid.Column="0" Grid.ColumnSpan="2" RowDefinitions="Auto,Auto" ColumnDefinitions="Auto,Auto" >
<Label Grid.Row="0" Text="Insured ABN" Margin="10,10,0,0" FontAttributes="Bold" TextColor="{DynamicResource RA_DarkBlue}"
VerticalTextAlignment="Center" HorizontalOptions="Start" />
<telerik:RadRegexMaskedEntry Grid.Row="1" x:Name="txtABN" Value="{Binding CurrentApplication.Abn}"
Mask="^\s*[1-9](\s*\d){10}\s*$" WidthRequest="200" Margin="10,5,0,5"
ValidationErrorMessage="Invalid ABN"
BackgroundColor="White" VerticalOptions="End" />
<Label Grid.Row="0" Grid.Column="1" Text="Registered for GST" Margin="20,10,0,0" FontAttributes="Bold" TextColor="{DynamicResource RA_DarkBlue}"
VerticalTextAlignment="Center" />
<telerik:RadCheckBox Grid.Row="1" Grid.Column="1" x:Name="chkRegisteredForGST" IsChecked="{Binding CurrentApplication.RegisteredForGST}"
WidthRequest="40" HorizontalOptions="Start"
VerticalOptions="Center" BackgroundColor="AliceBlue" Margin="10,0,10,10" />
</Grid>Just for reference, I'm using the Maui Community MVVM Toolkit and the two properties in the XAML below look like this in my model. The instance of this model is a singleton in my VM and named "CurrentApplication' (hence XAML reference).
public partial class ApplicationData : ObservableObject
{
//...other observable proerties...
[ObservableProperty]
private string? abn;
[ObservableProperty]
private bool registeredForGST;
//...etc...
}