Hi,
New Rad Entry - not apply to Text property ignore this value.
In Microsoft is ok.
<telerikMauiControls:RadEntry Grid.Row="3" Grid.Column ="0" x:Name="txtPassword" FontSize="14" Margin="0,15,0,0" Placeholder="Password" HorizontalOptions="Center" VerticalOptions="Center" WidthRequest="280" IsPassword="True" Text="1234" />
Thanks,
Hi,
Look on the location of placeholder.
Thanks,<telerikMauiControls:RadEntry x:Name="txtName" Placeholder="Name" WidthRequest="200" />
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,
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 ?
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
Hi,
In the new release( 6) I didn't see expand button.
Can you give small sniped code how is can be done ?
Thanks,
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>
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
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>