Repro steps:
Xaml to use
<ContentPage.Resources>
<ResourceDictionary>
<Style TargetType="Button">
<Setter Property="WidthRequest" Value="253" />
<Setter Property="HeightRequest" Value="77" />
<Setter Property="Background" Value="Green" />
<Setter Property="TextColor" Value="White" />
<Setter Property="Margin" Value="1,1,1,1" />
<Setter Property="Text" Value="Witdh 253, Margin 1,1,1,1" />
</Style>
<Style x:Key="NoMargin" TargetType="Button">
<Setter Property="WidthRequest" Value="255" />
<Setter Property="Margin" Value="0" />
<Setter Property="Text" Value="Witdh 255, Margin 0" />
</Style>
</ResourceDictionary>
</ContentPage.Resources>
<ScrollView>
<VerticalStackLayout Margin="30,0" VerticalOptions="Center">
<!-- FIRST TEST -->
<Label Margin="30" HorizontalOptions="Center" Text="The layout below at width 765 should fit all its items on a single row" />
<telerik:RadWrapLayout Background="DarkGreen" StretchLastChild="False" WidthRequest="765">
<Button />
<Button />
<Button />
</telerik:RadWrapLayout>
<Label Margin="30" HorizontalOptions="Center" Text="The layout below at width 764.5 shows items in a single row (when they shouldn't fit)" />
<telerik:RadWrapLayout Background="DarkRed" StretchLastChild="False" WidthRequest="764.5">
<Button />
<Button />
<Button />
</telerik:RadWrapLayout>
<Label Margin="30" HorizontalOptions="Center" Text="The layout below at width 764.4 shows items in a single row (when they shouldn't fit) and presents a blank row" />
<telerik:RadWrapLayout Background="DarkRed" StretchLastChild="False" WidthRequest="764.4">
<Button />
<Button />
<Button />
</telerik:RadWrapLayout>
<Label Margin="30" HorizontalOptions="Center" Text="The layout below at width 764.3 shows items in two rows, as expected" />
<telerik:RadWrapLayout Background="DarkGreen" StretchLastChild="False" WidthRequest="764.3">
<Button />
<Button />
<Button />
</telerik:RadWrapLayout>
<!-- SECOND TEST -->
<Label Margin="30" HorizontalOptions="Center" Text="Second test" />
<Label Margin="30" HorizontalOptions="Center" Text="The layout below at width 765 should fit all its items on a single row, but doesn't" />
<telerik:RadWrapLayout Background="DarkRed" StretchLastChild="False" WidthRequest="765">
<Button Style="{StaticResource NoMargin}" />
<Button Style="{StaticResource NoMargin}" />
<Button Style="{StaticResource NoMargin}" />
</telerik:RadWrapLayout>
<Label Margin="30" HorizontalOptions="Center" Text="The layout below at width 764.5 shows items in two rows" />
<telerik:RadWrapLayout Background="DarkGreen" StretchLastChild="False" WidthRequest="764.5">
<Button Style="{StaticResource NoMargin}" />
<Button Style="{StaticResource NoMargin}" />
<Button Style="{StaticResource NoMargin}" />
</telerik:RadWrapLayout>
<Label Margin="30" HorizontalOptions="Center" Text="The layout below at width 764.4 shows items in two rows" />
<telerik:RadWrapLayout Background="DarkGreen" StretchLastChild="False" WidthRequest="764.4">
<Button Style="{StaticResource NoMargin}" />
<Button Style="{StaticResource NoMargin}" />
<Button Style="{StaticResource NoMargin}" />
</telerik:RadWrapLayout>
<Label Margin="30" HorizontalOptions="Center" Text="The layout below at width 764.3 shows items in two rows" />
<telerik:RadWrapLayout Background="DarkGreen" StretchLastChild="False" WidthRequest="764.3">
<Button Style="{StaticResource NoMargin}" />
<Button Style="{StaticResource NoMargin}" />
<Button Style="{StaticResource NoMargin}" />
</telerik:RadWrapLayout>
</VerticalStackLayout>
</ScrollView>

Hello! I have seen various answers in the forum around templates for RadTabView, and some have shown the then-current defaults for some of the TabView templates.
Could you please provide the default templates here, and eventually update the documentation to show the defaults, similar to how the Xamarin documentation does? I'm referring to this documentation:
https://docs.telerik.com/devtools/maui/controls/tabview/templates
I'd love to be able to see the default HeaderTemplate, HeaderItemTemplate, ContentTemplate, etc.
Thank you!

Hello,
We have a MAUI app that we are transitioning from Xamarin Forms. In the app we have a popup page that appears, which has a RadListPicker control in it.
In Xamarin.Forms we used to use rg.plugins.popups and would add the RadListPicker control there. Everything would work fine, it would appear ok on both platforms.
Since MAUI, on iOS, we have not been able to replicate that behavior. We have tried using Mopups, and CommunityToolkit.MAUI Popups with no success.
Using Mopups, the ListPicker is shown behind the popup page, and using the CommunityToolkit, the Picker does not show up at all.
Steps to reproduce:
1. Install CommunityToolkit.MAUI package
2. Create a Popup page and add a ListPicker with any data
3. Navigate to the popup and try to open the picker
Any help would be greatly appreciated.
Thank you!

Hello,
In my MAUI application I want to use:
<telerik:RadNumericInput Value="{Binding Gamma, Mode=TwoWay}" StringFormat="{}{0:F1}" Minimum="0" Maximum="4.0" Step="0.1" />
The problem is, I can't type in e.g. "2.1", I type "2." and after I type 1 it make a 4.0 out of it. But I can type "2 " in it and use the buttons to select "2.1".
That's a pretty simple use case, what am I doing wrong?
Thanks,
Harald

Hi,
I have a project in .NET 9 and I'm using Telerik 10.0.0, I'm trying to display a TreeView with the default style, but I only have the text displayed.
Here is the XAML code:
<telerik:RadTreeView Grid.Row="1"
ItemsSource="{Binding Catalog.Children}"
BackgroundColor="#FFFFFF"
ItemTapped="OnTreeItemTapped"
LoadChildrenOnDemandCommand="{Binding LoadOnDemandCommand}"
VerticalOptions="FillAndExpand">
<telerik:TreeViewDescriptor DisplayMemberPath="Name"
ItemsSourcePath="Children"
TargetType="{x:Type viewModel:CatalogParentItemViewModel}" />
<telerik:TreeViewDescriptor DisplayMemberPath="Name"
TargetType="{x:Type viewModel:CatalogItemViewModel}" />
</telerik:RadTreeView>In the screenshot, the "Sans nom" item is of type CatalogParentItemViewModel and it does have children.
In the console, I have the following error which may be related:
java.lang.RuntimeException: Font asset not found /data/user/0/com.app.test/cache/telerikfont.ttf at android.graphics.Typeface.createFromAsset(Typeface.java:1061) at crc6452ffdc5b34af3a0f.NavigationViewFragment.n_onCreateView(Native Method) at crc6452ffdc5b34af3a0f.NavigationViewFragment.onCreateView(NavigationViewFragment.java:39) at androidx.fragment.app.Fragment.performCreateView(Fragment.java:3119) at androidx.fragment.app.FragmentStateManager.createView(FragmentStateManager.java:577) at androidx.fragment.app.FragmentStateManager.moveToExpectedState(FragmentStateManager.java:286) at androidx.fragment.app.FragmentManager.executeOpsTogether(FragmentManager.java:2214) at androidx.fragment.app.FragmentManager.removeRedundantOperationsAndExecute(FragmentManager.java:2115) at androidx.fragment.app.FragmentManager.execPendingActions(FragmentManager.java:2052) at androidx.fragment.app.FragmentManager$5.run(FragmentManager.java:703) at android.os.Handler.handleCallback(Handler.java:959) at android.os.Handler.dispatchMessage(Handler.java:100) at android.os.Looper.loopOnce(Looper.java:232) at android.os.Looper.loop(Looper.java:317) at android.app.ActivityThread.main(ActivityThread.java:8705) at java.lang.reflect.Method.invoke(Native Method) at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:580) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:886)
How can I have the default style shown in the examples of the documentation?
Thanks
Julien

I'm trialing telerik maui controls and got this issue specific to iOS.
The app launches, an alert dialog injected by telerik is shown with the "this is a trial" information.
when dismissing the alert, the app crashes:
[0:] An error occurred: 'Object reference not set to an instance of an object.'. Callstack: ' at Telerik.Maui.Controls.TelerikLicense.<>c__DisplayClass12_0.<ShowLicenseMessage>b__1()
any ideas?
it works fine on windows and android, just iOS keeps failing and stopping me from validating telerik controls.
####EDIT####
I've managed to reproduce this issue on a separate project.
protected override void OnStart()
{
var mainPage = Application.Current.Windows[0].Page;
if (mainPage is Loading)
{
Page target = new PageWithTelerik();
MainThread.BeginInvokeOnMainThread(() => { Application.Current.Windows[0].Page = target; });
}
}if you then run this app, it'll:
I have a CollectionView with Groups which does not seem to be refreshing when groups are expanded/collapsed. If I move the control (kind of force a scroll) things seem to refresh
What can I do to force the control to refresh. Can I capture when the user Expand/Collapse and do a Load. I have looked at LoadOnDemand, but I don't see how this would work.
Example
Control before expand
After Expand (You can see Pipeline Device shows expanded, but nothing is visible)
After do a scroll on control
Using the RichTextEditor I am attempting to set a default value for font family using a style but so far have been unable to get it to work.
Here is my attempt.
StringBuilder _HtmlContent = new StringBuilder();
_HtmlContent.Append("<html><head><style>body { font-family:verdana;; font-size: 16px; }</style></head><body>");
_HtmlContent.Append("<p>This is a paragraph with Verdana font.</p>");
_HtmlContent.Append("</body></html>");
this.richTextEditor.Source = RichTextSource.FromString(_HtmlContent.ToString());
What am I doing wrong? Thanks for your help.
Daniel

Hi,
Does the chat control support rendering messages that are in Markdown format? For Example:
**James Smith**
- Department: Development
- Role: Senior Developer
This should show James Smith in bold. If the chat control does not support this can you suggest any approaches to achive this?
Thanks,
Euan
