cannot scroll using the < and > buttons when Overflow mode is Scroll
cannot tap on the dots button to open the drop-down on DropDown Overflow mode.
The issue happens in the PDF toolbar too.
When using the back button of the NavigationButtonToolbarItem it does not work, so I cannot navigate back.
The behavior also happens in the PdfViewerSearchNavigationToolbarItem
The content inside the swipe template is missing when using MAUI 9.0.40 and Telerik MAUI 10.0.0
Workaround:
Use MAUI 9.0.30 and Telerik MAUI 10.0.0
When having a RadCollectionView in the first tab for example, and switching tabs, the content inside the tabs does not update when scrolling the collectionview. When removing the RadCollectionView, the content updates.
This happens when using Telerik Maui 10.0.0 version and Maui 9.0.40
1. Bind the CheckedItems collection of the TreeView to the CollectionView ItemsSource.
2. there aren't any items in the TreeView initially. Add items to it
3. Start checking the checkboxes
4. The items are added to the CollectionView, still they are not visible in the control.
When a ComboBox editor is open in the DataGrid, one can use the arrow keys to go up and down the items of the combo in order to make a selection. When pressing Enter it is expected that the ComboBox gets closed and the DataGrid is still in edit mode for the same cell.
However, when the Enter is pressed - the ComboBox closes and the next row goes into edit mode - this behavior is erroneous.
Having the following setup:
<telerik:RadNavigationView x:Name="navigationView">
<telerik:RadNavigationView.Items>
<telerik:NavigationViewItem Text="Item 1" Position="Header" />
<telerik:NavigationViewItem Text="Item 2" />
<telerik:NavigationViewItem Text="Item 3" />
<telerik:NavigationViewItem Text="Item 4" />
<telerik:NavigationViewItem Text="Item 5" Position="Footer" />
</telerik:RadNavigationView.Items>
<telerik:RadNavigationView.Content>
<Label HorizontalOptions="Center"
VerticalOptions="Center"
Text="{Binding SelectedItem.Text, Source={x:Reference navigationView}}" />
</telerik:RadNavigationView.Content>
</telerik:RadNavigationView>
and setting the header and footer position to the NavigationView item, the header and the footer are missing. This happens when using Telerik MAUI 10.0.0 version.
When using Telerik MAUI 9.0.0 the header and footer are displayed.