Telerik Forums
UI for .NET MAUI Forum
1 answer
168 views

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!!

Didi
Telerik team
 answered on 10 Feb 2023
1 answer
1.6K+ views

Hello,

Is it possible to nest two ListView each with a different DataSource?

 

Can you give an example, please?

Maria
Telerik team
 answered on 10 Feb 2023
1 answer
272 views

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

<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
               xmlns:telerikPrimitives="http://schemas.telerik.com/2022/xaml/maui" 
             x:Class="LoyHutz.Maui.Pages.Test"
             Title="Test">
    <VerticalStackLayout>
        <Label 
            Text="Welcome to .NET MAUI!"
            VerticalOptions="Center" 
            HorizontalOptions="Center" />

    <telerikPrimitives:RadAutoComplete x:Name="Autocomplete"  BackgroundColor="Grey" 
                                               VerticalOptions="Center" 
                                               BorderColor="Transparent"
                                               BorderThickness="0"
                                               NoResultsMessage=""
                                               TextSearchPath=""
                                                Focused="Autocomplete_Focused"  Unfocused="Autocomplete_Unfocused"
                                                TextChanged="Autocomplete_TextChanged"/>
  </VerticalStackLayout>
</ContentPage>

 

Thanks in advance

 

Didi
Telerik team
 answered on 09 Feb 2023
1 answer
227 views

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>



Lance | Senior Manager Technical Support
Telerik team
 updated answer on 07 Feb 2023
1 answer
361 views

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,

Missing User
 answered on 07 Feb 2023
1 answer
148 views
I did the Terelik installation steps but the last step for the package I did not have the Telerik.UI.for.Maui I sectioned the Telerik server and I wrote my user name and password but I have no result.
Lance | Senior Manager Technical Support
Telerik team
 answered on 06 Feb 2023
1 answer
292 views
Hi, good day. Is it possible to add a content page or content view to RadTabView, similar to maui TabbedPage?
Didi
Telerik team
 answered on 02 Feb 2023
1 answer
310 views
In Telerik UI for .NET MAUI, design themes cannot be found in the documentation like in WPF. Are the components such as color themes, Margin, Corner, etc. that have been redefined from simple color themes currently planned? Or do they have to be redefined and used manually?
Maria
Telerik team
 answered on 30 Jan 2023
1 answer
184 views

The Xamarin version seems to have so many formatting options for the series label how can we adjust the Font, Size, and Color of the Label for the Pie and DonutSeries Label in MAUI?

 <telerik:PieSeries.LabelSettings>
                <telerik:PieLabelSettings FontSize="15"
                                         FontFamily="Arial"
                                         Distance="20"
                                         Fill="Yellow"
                                         Format="{0:P0}"/>
</telerik:PieSeries.LabelSettings>

Also, I was reading where the Xamarin Control Legend had a Title option, can that be brought over to MAUI at some point?

<telerik:RadPieChart.LegendSettings>
        <telerik:ChartLegendSettings Position="Right"
                                    Title="My Legend"
                                    TitleColor="Green"
                                    TitleFontSize="20"
                                    TitleFontFamily="Arial"
                                    ItemWidth="50"
                                    ItemHeight="25"
                                    ItemColor="Yellow"
                                    ItemFontSize="15"
                                    ItemFontFamily="Arial"  />
    </telerik:RadPieChart.LegendSettings>

Also, as another request, if you guys can add a feature to the Bar series chart where we can add the ability to set a Corner Radius to the ends of the Bars so they can be rounded?  It would make it more stunning and impactful I believe.  I know other vendors have that option so it should be doable.

Lance | Senior Manager Technical Support
Telerik team
 answered on 20 Jan 2023
1 answer
291 views

I know it's not supported out of the box, but I was wondering if there would be a way to create custom header items that have text and badges in them. 

For instance:

 

Alternatively, are there any future plans to add such functionality?

Didi
Telerik team
 answered on 19 Jan 2023
Top users last month
Anislav
Top achievements
Rank 6
Silver
Bronze
Bronze
Jianxian
Top achievements
Rank 1
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Jim
Top achievements
Rank 2
Iron
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?