Telerik Forums
UI for .NET MAUI Forum
0 answers
260 views

Hi,

Look on the location of placeholder.

Thanks,
<telerikMauiControls:RadEntry  x:Name="txtName" Placeholder="Name" WidthRequest="200"  />

Daniel
Top achievements
Rank 1
Silver
Bronze
 asked on 29 Mar 2022
1 answer
363 views

Hi,

The button not disabled in my side.
      <telerik:RadButton  AutomationId="button" Text="Back" HorizontalOptions="End" VerticalOptions="Center" Command="{Binding BackCommand}" BackgroundColor="{DynamicResource PrimaryColor}"  Margin="15" IsEnabled="True"/>
         

Thanks,

Lance | Senior Manager Technical Support
Telerik team
 answered on 28 Mar 2022
1 answer
201 views

Hi,

I moved to maui 14 telerik 6.

I took another copy of my project.

1. I uninstalled vs 20202 preview 17.2  Preview 1.

2. Installed Version 17.2.0 Preview 2.1

3. Running the dotnet workload commands (dotnet workload install maui --ignore-failed-sources)

4. Build project passed succeccfully.

5.But pages stop working... pages with charts and more controls stop working...

What do I miss ?   

 

 

 

 

 

 

 

 

 

 

 

Lance | Senior Manager Technical Support
Telerik team
 answered on 28 Mar 2022
1 answer
1.5K+ views

Hi Team,

Do you implement right click event or two finger click event, three finger click event right now? I did not find docs about them.

If not, do you have a plan to implement it?

 

 

Thanks

 

Lance | Senior Manager Technical Support
Telerik team
 answered on 25 Mar 2022
1 answer
294 views

Hi,

In the new release( 6) I didn't see expand button.

Can you give small sniped code how is can be done ?

Thanks,

Lance | Senior Manager Technical Support
Telerik team
 answered on 24 Mar 2022
1 answer
609 views

Hi,

I want scroller view with popup.

I use your scroller but is not working , why ?

 

           <telerikPrimitives:RadPopup.Popup Margin="10">
                <telerikPrimitives:RadPopup x:Name="popupError"
                                  IsModal="True"
                                  OutsideBackgroundColor="#6F000000"
                                            Placement='Center'>
                    <telerikMauiControls:RadBorder CornerRadius="8"
                                         BackgroundColor="{DynamicResource PrimaryColor}">
                        <telerikMauiControls:RadScrollView >
                        <Grid Padding="20"
                                WidthRequest="200"
                                HeightRequest="170">
                            <Grid.RowDefinitions>
                                <RowDefinition Height="40" />
                                <RowDefinition Height="70" />
                             </Grid.RowDefinitions>
                            <Button Grid.Row="0"
                                    Padding="2"
                                   HorizontalOptions="End"
                                   Text="X"
                                   Clicked="OnClosePopup" 
                                  BackgroundColor="{DynamicResource PrimaryColor}" TextColor="White" />
                                  <Label x:Name="labelError" Grid.Row="1" Text="" TextColor="White"/>
                                 </Grid>
                         </telerikMauiControls:RadScrollView>
                    </telerikMauiControls:RadBorder>
                </telerikPrimitives:RadPopup>
            </telerikPrimitives:RadPopup.Popup>

Nikola
Telerik team
 answered on 23 Mar 2022
1 answer
455 views

I have followed the guide https://docs.telerik.com/devtools/maui/controls/map/getting-started to integrate maps into my app. However, all I get is an empty white rectangle.

MainPage.xaml:

<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             xmlns:telerikMap="clr-namespace:Telerik.XamarinForms.Map;assembly=Telerik.Maui.Controls.Compatibility"
             x:Class="MauiApp1.MainPage"
             BackgroundColor="{DynamicResource SecondaryColor}">

    <ScrollView>
        <Grid RowSpacing="25" HorizontalOptions="Fill" BackgroundColor="LightBlue" RowDefinitions="Auto, auto"
              Padding="{OnPlatform iOS='30,60,30,30', Default='20'}">
            <Grid Grid.Row="0" HeightRequest="600" BackgroundColor="Green">
                <telerikMap:RadMap x:Name="map" AutomationId="map">
                    <telerikMap:RadMap.Layers>
                        <telerikMap:ShapefileLayer>
                            <telerikMap:ShapefileLayer.Reader>
                                <telerikMap:MapShapeReader x:Name="reader"/>
                            </telerikMap:ShapefileLayer.Reader>
                        </telerikMap:ShapefileLayer>
                    </telerikMap:RadMap.Layers>
                </telerikMap:RadMap>              
            </Grid>                     
        </Grid>
    </ScrollView>
</ContentPage>

MainPage.xaml.cs:

using Telerik.XamarinForms.Map;
using Telerik.XamarinForms.ShapefileReader;

namespace MauiApp1;

public partial class MainPage : ContentPage
{
	public MainPage()
	{	
		InitializeComponent();

		var assembly = this.GetType().Assembly;
		var source = MapSource.FromResource("SDKBrowserMaui.Examples.MapControl.world.shp", assembly);
		this.reader.Source = source;

		Console.WriteLine("Source: " + source + "Reader: " + this.reader);
	}
}

Output:

Source: Telerik.XamarinForms.Map.StreamMapSource Reader: Telerik.XamarinForms.Map.MapShapeReader

Didi
Telerik team
 answered on 23 Mar 2022
1 answer
538 views
Please could you let me know of the trial MAUI components are suitable for use with Blazor.
Lance | Senior Manager Technical Support
Telerik team
 answered on 22 Mar 2022
1 answer
174 views

Hi,

From link: https://docs.telerik.com/devtools/maui/controls/path/geometry-structure

Is not working

 


<telerikPrimitives:RadPath x:Name="simpleLinePath"
                           StrokeThickness="4"
                           Stroke="#2EC262">
    <telerikCommon:RadPathGeometry>
        <telerikCommon:RadPathFigure StartPoint="0.8, 0.1">
            <telerikCommon:RadLineSegment Point="0.1, 0.8" />
        </telerikCommon:RadPathFigure>
    </telerikCommon:RadPathGeometry>
</telerikPrimitives:RadPath>

 

Lance | Senior Manager Technical Support
Telerik team
 answered on 22 Mar 2022
1 answer
282 views

Hi,

Popup  - is modal false not working


telerikPrimitives:RadPopup.Popup >
    <telerikPrimitives:RadPopup x:Name="popupError" IsOpen="False"
                                  IsModal="False" 
                                  OutsideBackgroundColor="#6F000000"
                                            Placement='Center' >
        <telerikMauiControls:RadBorder CornerRadius="8"
                                         BackgroundColor="#03446a">

            <Grid Padding="20"
                                WidthRequest="200"
                                HeightRequest="170">
                <Grid.RowDefinitions>
                    <RowDefinition Height="40" />
                    <RowDefinition Height="70" />
                </Grid.RowDefinitions>
                <Button Grid.Row="0"
                                    Padding="2"
                                   HorizontalOptions="End"
                                   Text="X"
                                   Clicked="OnClosePopup" 
                                  BackgroundColor="#03446a" TextColor="White" />
                <Label x:Name="labelError" Grid.Row="1" Text="" TextColor="White"/>
            </Grid>
        </telerikMauiControls:RadBorder>
    </telerikPrimitives:RadPopup>
</telerikPrimitives:RadPopup.Popup>

Lance | Senior Manager Technical Support
Telerik team
 answered on 22 Mar 2022
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?