Unplanned
Last Updated: 08 Jul 2025 06:56 by ADMIN

When navigating to a page with a RadRichTextEditor, it sometimes pops up an error on page load.  It is inconsistent, but I attached an example gif.  The xaml on the page I'm navigating to is basic:

  <Grid Margin="20">
    <telerik:RadRichTextEditor x:Name="RichTextEditorControl"
                               BorderColor="Black"
                               BorderThickness="1" />
  </Grid>

 

I believe this problem started with MAUI version 9.0.70.  Possibly with one of these changes:

https://github.com/dotnet/maui/pull/27003/files

https://github.com/dotnet/maui/pull/28354/files

 

Unplanned
Last Updated: 27 Jun 2025 12:25 by Teddy

A NullReferenceException is thrown during the measure phase of a DataGridTextColumn when a CellRenderer is applied:

Object reference not set to an instance of an object.
   at Telerik.Maui.Controls.DataGrid.DataGridColumn.MeasureDrawingPaintable(LambdaPaintable lambdaPaintable, Object measureContext)
   at Telerik.Maui.Controls.SkiaSharp.SkiaLambdaPainter.Measure(MeasureablePaintable paintable, PurePainterContext context, Double widthConstraint, Double heightConstraint)
   at Telerik.Maui.Controls.DataGrid.MasterArranger.MeasureNodeContainer(Object container, Double widthConstraint)
   at Telerik.Maui.Controls.DataGrid.MasterArranger.MeasureNodeContainer(Object container, Double widthConstraint)
   at Telerik.Maui.Controls.DataGrid.MasterArranger.MeasureGridCellModel(GridCellModel model)
   at Telerik.Maui.Controls.DataGrid.CellModelGenerator.GetSize(GridCellModel decorator)
   at Telerik.Maui.Controls.DataGrid.CellsController`1.GenerateCellsForRow(IItemInfoNode rowModel, Int32 rowSlot)
   at Telerik.Maui.Controls.DataGrid.NodePool`2.GenerateModelsForInfos(IList`1 itemInfos, ModelGenerationContext modelGenerationContext, MeasureContext measureContext)
   at Telerik.Maui.Controls.DataGrid.NodePool`2.MeasureForward(MeasureContext& context)
   at Telerik.Maui.Controls.DataGrid.NodePool`2.MeasureVertically(RadSize availableSize, Double offset, Double verticalBuffer)
   at Telerik.Maui.Controls.DataGrid.NodePool`2.OnMeasure(RadSize availableSize, Double offset, Double verticalBuffer)
   at Telerik.Maui.Controls.DataGrid.GridModel.MeasureCells(RadSize availableSize)
   at Telerik.Maui.Controls.DataGrid.DataGridContentLayout.Measure(Double widthConstraint, Double heightConstraint)
   at Microsoft.Maui.Platform.MauiPanel.MeasureOverride(Size availableSize)
   at ABI.Microsoft.UI.Xaml.IFrameworkElementOverrides.Do_Abi_MeasureOverride_0(IntPtr thisPtr, Size availableSize, Size* result)
Unplanned
Last Updated: 09 Jun 2025 12:12 by Dimitris
Appointments are not rendered accurately when scrolling through the time ruler and using appointment template selector and custom appointments
Unplanned
Last Updated: 22 May 2025 14:14 by Eric
When having a waterfront image in the document, it is displayed as a foreground element.
Unplanned
Last Updated: 22 May 2025 10:39 by ADMIN
When having a TreeView inside SlideView content, cannot change the slides using pan gesture
Unplanned
Last Updated: 21 May 2025 10:38 by ADMIN
expand a row and collapse it. Or expand a few rows, scroll around a bit, and then collapse one. You can get into some weird situations. Gray background over the group, row background and alternate styles are reset. 
Unplanned
Last Updated: 20 May 2025 05:51 by Shruti
Cannot scroll to the first messages when the keyboard appears. When the keyboard is closed, the messages can be reached.
Unplanned
Last Updated: 14 May 2025 15:27 by Haidar
Thumb position is misplaced when applying style through trigger and setting width.
Unplanned
Last Updated: 14 May 2025 15:15 by Haidar
When applying a style through triggers the position of the track is misplaced only first time.
Unplanned
Last Updated: 12 May 2025 08:48 by ADMIN

Delegate aggregate descriptor does not update value in the UI when adding/removing item.

The behavior also happens with the property aggregate descriptor.

Unplanned
Last Updated: 09 May 2025 05:59 by ADMIN

When adding an entry in the popup content and focusing the entry, the popup background crops on bottom when the keyboard appears.

The issue happens only on emulators pixel 7 pro, pixel 6a, android 13,14,15 etc. Currently, cannot reproduce on a real device.

Unplanned
Last Updated: 30 Apr 2025 10:13 by Luis
Create a blank telerik project (I've not used shell);
Update maui to 9.0.50 (for more relevance with current code);
Replace the contents of MainPage.xaml with the xaml shown below;
Remove unnecessary code from MainPage.xaml.cs to allow app to build and run;
OBSERVE:
Test 1.2 fails - items are shown on a single row when they should not fit.
Test 1.3 fails - items are shown on a single row when they should not fit, and the wrap layout is extended to two rows.
Test 2.1 fails - items are show on two rows when they should fit a single one.
Unplanned
Last Updated: 23 Apr 2025 12:35 by Ralph
There is a thin line between the header items when rotating the device in landscape mode
Unplanned
Last Updated: 17 Apr 2025 13:56 by Tony
When loading a pdf from a file, uri, etc, except as an embedded resource and Switching the app to background and then to foreground again forces an app restart. This is due to the fact that the stream closes. 
Unplanned
Last Updated: 16 Apr 2025 13:16 by Haidar
When a TelerikSlider is placed inside a layout that contains a view above the slider (e.g. a BoxView) that toggles visibility based on the slider’s value, an unexpected behavior occurs:

If the user is clicking on a slider value that toggles the visibility of the green box to change (either show or hide), the slider thumb continues to follow the mouse cursor even after the drag should have ended. This continues until the user explicitly clicks somewhere on the slider again.
Unplanned
Last Updated: 15 Apr 2025 14:11 by James

When setting horizontal text alignment to center, the text in Telerik Entry is not centered. In MAUI entry works. 

<ContentPage.Resources>
		<ResourceDictionary>
			<Style TargetType="telerik:RadEntry" x:Key="entry">
				<Setter Property="HeightRequest" Value="{OnPlatform WinUI=36,Android=40}"/>
				<Setter Property="WidthRequest"  Value="{OnPlatform WinUI=40,Android=40}"/>
				<Setter Property="MinimumWidthRequest"  Value="{OnPlatform WinUI=0,Android=10}"/>
				<Setter Property="MaxLength" Value="2"/>
				<Setter Property="FontSize" Value="15"/>
				<Setter Property="Margin" Value="0,0"/>
				<Setter Property="HorizontalTextAlignment" Value="Center"/>
				<Setter Property="VerticalTextAlignment" Value="Center"/>
				<Setter Property="HorizontalOptions" Value="Center"/>
			</Style>

			<Style TargetType="Entry" x:Key="mystyle">
				<Setter Property="HeightRequest" Value="{OnPlatform WinUI=36,Android=40}"/>
				<Setter Property="WidthRequest"  Value="{OnPlatform WinUI=40,Android=40}"/>
				<Setter Property="MinimumWidthRequest"  Value="{OnPlatform WinUI=0,Android=10}"/>
				<Setter Property="MaxLength" Value="2"/>
				<Setter Property="FontSize" Value="15"/>
				<Setter Property="Margin" Value="0,0"/>
				<Setter Property="HorizontalTextAlignment" Value="Center"/>
				<Setter Property="VerticalTextAlignment" Value="Center"/>
				<Setter Property="HorizontalOptions" Value="Center"/>
			</Style>
		</ResourceDictionary>
	</ContentPage.Resources>

	<VerticalStackLayout Spacing="10">
		<Entry Text="99" Style="{StaticResource mystyle}"/>
		<telerik:RadEntry Text="99" x:Name="entry" Style="{StaticResource entry}"
						  ClearButtonVisibility="Never" />

	</VerticalStackLayout>

 

Unplanned
Last Updated: 14 Apr 2025 13:57 by Teddy
Aggregates error appears in column with nested properties when the data you want to group by is not set by the time the data grid's ItemsSource is set,
Unplanned
Last Updated: 07 Apr 2025 08:26 by ADMIN
The control is enabled even when IsEnabled is set to false. 
Unplanned
Last Updated: 04 Apr 2025 09:23 by Mark

When having more items in the drawer content, the content does not resize dynamically, so the items to be visible. There is an inconsistency on the platforms:

On WinUI the drawer content does not display at all

On Android, the content displays as expected

On iOS and on MacCatalyst, the drawer content does not measure as expected. part of the content is not displayed. 

The workaround for now is applying a fixed length by setting the SideDrawer.DrawerLength property

Unplanned
Last Updated: 03 Apr 2025 09:25 by ADMIN

I have TabView which contains multiple tabs and tabs contains ScrollView with multiple entry elements.

After click on entry keyboard on android in the first tab, the content moves so you can see what to type in the input.

For all other tabs, the keyboard covers the entry.

1 2 3 4 5 6