Is it possible to bind a MAUI data form to business data? All samples only bind to classes but not to any variables that contain data. Any sample would be much appreciated!
Regards Gerhard

Hello,
I am customizing a listView, I am working with the grouping functionality and I want to know if it is possible to add an image in the ListViewGroupHeaderTemplate. In the same way, can you tell me if the way in which I add the GroupDescriptors is correct.
Here's my code:
<DataTemplate x:Key="ListViewGroupHeaderTemplate">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="auto" />
<RowDefinition Height="auto" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="auto" />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<Image Grid.RowSpan="2" Grid.Column="0" Source="{Binding LogoStore}" HeightRequest="50" WidthRequest="50" Margin="5" />
<Label Margin="0,12,0,6" Text="{Binding NameStore}" Grid.Column="1" TextColor="Black" FontSize="Medium" HorizontalOptions="Start" />
<Label Margin="0,12,0,6" Text="{Binding AddressStore}" Grid.Column="1" TextColor="#EEEEEE" FontSize="Medium" HorizontalOptions="Start" />
</Grid>
</DataTemplate>
...
<telerik:RadListView.GroupDescriptors>
<telerik:ListViewPropertyGroupDescriptor PropertyName="NameStore" />
<telerik:ListViewPropertyGroupDescriptor PropertyName="AddressStore" />
<telerik:ListViewPropertyGroupDescriptor PropertyName="LogoStore" />
</telerik:RadListView.GroupDescriptors>
Greetings!!

Hello,
Is it possible to nest two ListView each with a different DataSource?
Can you give an example, please?
Hi,
i have problem with autocomplete view, Unfocuse is not fired (after focusing and unfocusing) on android, its working properly for UWP. Could you please have a look? Also there is possibility to change Color of focus pointer
this is my code
Thanks in advance

Does anyone have this working in a .NET MAUI Mobile App? I added it to a contentpage, but it is not working. Can't compile. Getting the following errors:
The type 'telerik:RadImageEditorToolbar' was not found. Verify that you are not missing an assembly reference and that all referenced assemblies have been built.
The type 'telerik:RadImageEditor' was not found. Verify that you are not missing an assembly reference and that all referenced assemblies have been built.
My code example:
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:telerik="http://schemas.telerik.com/2022/xaml/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="TestApp.Profile.ProfilePage"
Title="ProfilePage">
<VerticalStackLayout
Margin="10"
>
<Label
Text="Test"
VerticalOptions="Center"
HorizontalOptions="Start"
FontSize="Title"
/>
<Grid RowDefinitions="Auto,*">
<telerik:RadImageEditorToolbar ImageEditor="{x:Reference imageEditor}"/>
<telerik:RadImageEditor x:Name="imageEditor" Grid.Row="1"/>
</Grid>
</VerticalStackLayout>
</ContentPage>
Hello,
It seems I cannot install MAUI on my Dev PC
I have downloaded the software and when the installation begins I am directed to Chrome browser to login.
The message I get from the browser is that I have successfully logged in – "Redirecting you to the Desktop Application"
But this redirection never takes place
After a few minutes on the Desktop Installer I get the message login Failed. Please try again
I have tried on two different PCs and have the same mulfunction
PC1 Windows 10 Pro / Microsoft Visual Studio Community 2022 (64-bit) - Version 17.2.5 / Chrome Version 109.0.5414.120 (Official Build) (64-bit)
PC2 Windows 11 HOME / Microsoft Visual Studio Community 2022 (64-bit) - Version 17.4.3 / Chrome Version 109.0.5414.120 (Official Build) (64-bit)
Could you please assist me with this?
Thank you
I have available an Any Desk connection
Thank you,

