Unplanned
Last Updated: 02 Apr 2025 08:06 by Juraj

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.

Unplanned
Last Updated: 02 Apr 2025 06:09 by ADMIN
Created by: Greg
Comments: 10
Category: ImageEditor
Type: Feature Request
16

This is a feature request for an annotations layer that provides lines, shapes, text, etc.

These annotations:

  • Should not embedded into the bitmap until the image is saved (or otherwise flattened).
  • Should be importable/exportable as JSON data so that the developer can load/save the annotations separate from the image.

As an example of these features, see Techsmith's SnagIt Editor app.

Unplanned
Last Updated: 02 Apr 2025 06:06 by ADMIN
There is a memory leak in the TreeView on iOS/MacCatalyst - when the TreeView control is on the page, the page does not dispose when GC runs.
Duplicated
Last Updated: 01 Apr 2025 07:59 by ADMIN
I have a basic PDF viewer app with a Pdf View Toolbar.  On it I have a PdfViewerNavigateToPageToolbarItem which correctly displays the current page and page count and on the iOS simulator it works fine - I can enter a page number and hit enter (on a physical keyboard) to navigate to a page.  However, when deploying to an actual device (iPhone 16, iOS 18.3) I can't properly use the Entry to navigate to a page.  When I tap the entry field, the numeric keypad is displayed and I can enter a page number however since there is no "enter" or "done" button on the keypad there's no way to "accept" the value that has been entered so I cannot navigate to a page and there's no way to dismiss the keypad.

I reported a couple of other issues with the Pdf Viewer toolbar items a couple of weeks ago that turned out to be bugs, presumably this is too, but if I am doing something wrong or there is a workaround please let me know.

Thanks

Tony
In Development
Last Updated: 31 Mar 2025 12:19 by ADMIN
I have a ComboBox( a few actually) that is contained within a ScrollView. When I am clicked on the ComboBox and am using the arrow keys to navigate the ComboBox items, the ScrollView in the background also scrolls.
Unplanned
Last Updated: 31 Mar 2025 09:25 by Gerry
Created by: Jim
Comments: 1
Category: PDFViewer
Type: Feature Request
2

Provide support to display highlight annotation in the PDF Viewer. Currently, the highlight color is displayed but the text is missing.

Duplicated
Last Updated: 31 Mar 2025 05:47 by ADMIN
Created by: Dominik
Comments: 1
Category: TabView
Type: Feature Request
7

The TabView behaves erratically in RTL languages (e.g. Arabic). The tabs are correctly outlined from right-to-left but clicking on them leads to unexpected behaviour, as can be seen in the attached video. Clicking on a tab moves the selection to a completely different tab. Furthermore, the tab content is not displayed if any tab except the first one is selected.

Our product reaches an international market and is translated to more than 20 languages. Right-to-left language support is an integral part of our application. A similar bug has been reported almost two years ago (TabView: Right to Left support). Please fix this.

A VisualStudio solution has been attached to this bug report. It uses the sample code from your documentation (Telerik TabView for.NET MAUI—Tabbed UI with Native Look) to display three tabs.

Deploy the sample application to Android or iOS platforms to reproduce the issue.

In Development
Last Updated: 28 Mar 2025 15:55 by ADMIN
The UI freezes when RadTabView is used as a parent container for RadCollectionView and the CollectionView is scrolled.
Unplanned
Last Updated: 28 Mar 2025 14:28 by Mohanraj

When having a TreeView with ItemTemplate and adding the TapGesture on ItemTemplate, the scrolling on mobile stops working. 

Workaounrd:

Add the tap gesture only on a label, not to the complete item template.

Unplanned
Last Updated: 28 Mar 2025 08:12 by Hanoch

When using ImageButton inside a CellTemplate, the image does not display initially. When you resize the window image is displayed. 

 

Workaround:

Use Image instead of ImageButton

 

Unplanned
Last Updated: 27 Mar 2025 10:26 by Craig

Color fades on scale transition to minimize or maximize other than 100% when corner radius is set to specific values. For example:

1,0,0,1,
1,1,0,0,
0,1,1,0
0,0,0,1, etc

Declined
Last Updated: 27 Mar 2025 09:01 by ADMIN

Currently, when setting Numeric keyboard, on Mac and windows you can also enter non-numeric characters.

Provide an option when keyboard is numeric, the entry to replace its internal input control, so only numeric values to be entered.

 

Similar feature is opened for maui Entry: https://github.com/dotnet/maui/issues/9201

Duplicated
Last Updated: 27 Mar 2025 08:48 by ADMIN
Created by: Raymond
Comments: 6
Category: PDFViewer
Type: Feature Request
3

Hello,

Id would be great having basic editing functionalities in MAUI PDFViewer as you offer in WPF version.
Especially we're interested in having ability to add text and basic shape annotations.

Best Regards,
Raymond

In Development
Last Updated: 26 Mar 2025 15:26 by ADMIN
Setting the ItemViewStyle to have a Margin of any value greater than zero makes the items height to increase continuously when scrolling. 
Unplanned
Last Updated: 25 Mar 2025 08:48 by ADMIN

When adding templated  buttons in a ScrollView and the ScrollView width is the same as the buttons width, i cannot scroll the view with the buttons, click/tap gesture occurs, and this blocks the scrolling

	<ScrollView HeightRequest="100 " WidthRequest="44"
				ios:ScrollView.ShouldDelayContentTouches="false">
		<Grid ColumnDefinitions="44">
			<Grid.RowDefinitions>
				<RowDefinition></RowDefinition>
				<RowDefinition></RowDefinition>
				<RowDefinition></RowDefinition>
				<RowDefinition></RowDefinition>
				<RowDefinition></RowDefinition>
				<RowDefinition></RowDefinition>
			</Grid.RowDefinitions>
			<telerik:RadTemplatedButton Content="123" x:Name="btn"
                                     WidthRequest="44"
                                     HeightRequest="44"
                                     Grid.Row="0" />
			<telerik:RadTemplatedButton Content="456"
                                     WidthRequest="44" x:Name="tembutton"
                                     HeightRequest="44"
                                     Grid.Row="1" />
			<telerik:RadTemplatedButton Content="789"
                                     WidthRequest="44" x:Name="templated"
                                     HeightRequest="44"
                                     Grid.Row="2" />
			<telerik:RadTemplatedButton Content="012" x:Name="temp"
                                     WidthRequest="44"
                                     HeightRequest="44"
                                     Grid.Row="3" />
			<telerik:RadTemplatedButton Content="345" x:Name="button"
                                     WidthRequest="44"
                                     HeightRequest="44"
                                     Grid.Row="4" />
			
		</Grid>
	</ScrollView>

Unplanned
Last Updated: 24 Mar 2025 15:20 by Teddy
When DataGrid is grouped and applying filtering, aggregates footer appears in the cells
Unplanned
Last Updated: 24 Mar 2025 10:48 by Legrand
Created by: Taylor
Comments: 2
Category: CollectionView
Type: Feature Request
7
Provide keyboard navigation support for CollectionView
Unplanned
Last Updated: 21 Mar 2025 15:17 by Teddy
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: 21 Mar 2025 14:37 by Teddy

Some data is missing from the UI when grouping is applied and then filter the data. 

If you ungroup, the items are displayed.

Declined
Last Updated: 21 Mar 2025 14:05 by ADMIN
When entering a cell in edit mode its value is displayed on the next cell and the cell editor template uses MaskedEntry.
1 2 3 4 5 6