Hello Telerik.
Currently using your RichTextControl and it is working well.
One feature I would love is if the source and output could also be markdown.
Currently you only support the source as HTML as well as the output is HTML.
I am storing the data in markdown for various reasons and the constant conversion to and from markdown/HTML would be nice to avoid.
Regards
Chris ....
1) We inserted one image in Rich Text Editor. Here the original size was 100%.
2) We resized the image, i.e. reduced the size to 50%, 30%, 10%, etc.
3) After reducing size we fetched the HTML through GetHTML() method.
4) We converted the HTML string into an RTF string.
5) Again converted RTF to HTML string.
6) Image size is not updated to 50/30/10%, it has different width and height.
Draw several polygons, polylines and markers on the map with code.
Provide user interactions, such as tap on polygon, drag a marker, etc,
Hi Team,
We would love to be able to have support for placing a small logo in the middle of the QR code. Similar to the cross in the Swiss QRCode, but of our own design.
Thank you,
Jason
When building against XF5 and after migrating a project you can get the following error:-
SeverityCodeDescriptionProjectFileLineSuppression State
Errorfailed linking file resources.App1.Android
Error'5dp' is incompatible with attribute verticalOffset (attr) float [weak].App1.Android
Error'10dp' is incompatible with attribute horizontalOffset (attr) float [weak].App1.Android
It appears to be a conflict between
<PackageReferenceInclude="Xamarin.Google.Android.Material"Version="1.2.1.1" />
and Telerik assemblies.
If a dummy app is built with that Nuget it all works fine until the Nuget
<PackageReference Include="Telerik.UI.for.Xamarin" Version="2021.1.119.1" />
is added.
So you can have one or the other but not both.
Please see this GitHub thread where its discussed more and a sample app is posted.
(I am user Gmotagi in it)
https://github.com/xamarin/Xamarin.Forms/issues/13303
Add a password strength indicator/meter for the Entry control similar to the one in ASP.NET AJAX TextBox:
Demos: Telerik Web UI TextBox Password Strength Checker Demo | Telerik UI for ASP.NET AJAX
Docs: Telerik Web Forms Password Strength Checker - RadTextBox | Telerik UI for ASP.NET AJAX
Currently, It's quite difficult to detect whether the text has been changed after the control is loaded completely.
And TextFormattingChanged event can not be raised when the text content is changed while text format isn't.
On Android when adding new item to the ListView which is RadExpander with RadListView inside it, and when removing and adding item with different length the cell is not measured correctly.
On iOS the ListView cell are not automatically sized. one height for cell is used
On UWP when adding the second item the app crashes with "System.ArgumentException: An item with the same key has already been added. Key: SDKBrowser.Examples.ListViewControl.GettingStartedCategory.GettingStartedExample.Product\r\n at System.ThrowHelper.ThrowAddingDuplicateWithKeyArgumentException(Object key)\r\n at System.Collections.Generic.Dictionary`2.TryInsert(TKey key, TValue value, InsertionBehavior behavior)\r\n at Telerik.UI.Xaml.Controls.Data.ListView.Model.BaseLayoutStrategy.RecycleLocally()\r\n at Telerik.UI.Xaml.Controls.Data.ListView.Model.BaseLayout"
Barcode reader which can scan a barcode and input it in an entry.
I'd like it to work like the Telerik ListPicker control, which has the available setting IsLooping = false.
DataBindingComplete event of the DataGrid should be fired when the associated data (ItemsSource) has been successfully bound to the control or any data operation like Group, Sort or Filter is applied. Currently the event handler is not called as expected.
<Grid BackgroundColor="{StaticResource LightGrey}"> <Grid.RowDefinitions> <RowDefinition Height="Auto" /> <RowDefinition Height="Auto" /> <RowDefinition Height="*" /> </Grid.RowDefinitions> <controls:FaSearchBar Grid.Row="0" Margin="20" x:Name="searchBar" TextColor="{StaticResource Black}" Text="{Binding SearchText}" Placeholder="{Binding Localize[TextSearchFulfillment]}" PlaceholderColor="{StaticResource DarkGrey}" BackgroundColor="{StaticResource LightGrey}"> </controls:FaSearchBar> <Grid Grid.Row="1" BackgroundColor="{StaticResource White}"> <Grid.ColumnDefinitions> <ColumnDefinition Width="Auto" /> <ColumnDefinition Width="*" /> <ColumnDefinition Width="Auto" /> </Grid.ColumnDefinitions> <Label Grid.Column="0" Text="21 Pending Orders" Style="{StaticResource SecondaryTextLabel}" VerticalOptions="Center" Margin="20,0,20,0"/> <Label Grid.Column="1" Text="Last synced on: June 3, 09:41 AM" Style="{StaticResource SummaryTextLabel}" TextColor="{StaticResource DarkGrey}" HorizontalOptions="EndAndExpand" /> <telerikInput:RadButton Grid.Column="2" Text="Sync Now" TextColor="{StaticResource DarkGrey}" HorizontalOptions="EndAndExpand" Margin="20,10,20,10" BorderThickness="2" CornerRadius="10" BorderColor="{StaticResource LightGrey}"> <telerikInput:RadButton.ImageSource> <FontImageSource Size="Small" FontFamily="{DynamicResource FontAwesome5ProRegular}" Glyph="{x:Static xaml:Icons.Rotate}" Color="{StaticResource DarkGrey}" /> </telerikInput:RadButton.ImageSource> </telerikInput:RadButton> </Grid> </Grid>