This happens in your samples using the Windows Machine option to launch the app. In your samples, it does a really good job of translating the voice and putting it in the textbox but ultimately crashes with unhandled exceptions and VS.NET tries to bring up its own debugger.

Happens in my app as well as your Examples app. I'm debugging with my local table Samsung SM-X218U Android 15.0 - API 35.
Any idea what I can to make this work?
Other than using InputTransparent = true, which also blocks scrolling.
This is to avoid the interaction of mousehover and cellcontentselector.
Hi,
After upgradingTelerik to 8.0.0 and MAUI to 9.0, RadTabView doesnt change to another Tab when i click on it.
Do you have the same issue ?
Hi Telerik,
I am I am using RadListPicker in MAUI application, and the popup touches the screen n mobile app on left and right.
I tried adding margin to PopupViewStyle, but i could not see any space on the left and right, it still touches the screen.
Can you provide the solution for this.
Thanks,
Mohammed Rameez Raza (Rameez).


We have requirement of Customizable Button in Maui (Android and iOS) and Blazor web assembly, attached video reference.

We have requirement of customizable calendar with Dates as mentioned below,
Will this above cases achievable in Maui (Android and iOS) and Blazor web as well?
I have encountered a problem with a page with RadDataGrid on it. On iOS when pressing back from this page app crashes with this error:
I'm suspecting a RadDataGrid because when I remove it from the page exception no longer occurs. It works on android without any issues.
version used: Telerik.UI.for.Maui 6.6.0
dotnet version: net9.0-ios
I am using Localization using ResourceManager. I have created various TelerikResource resx files with various languages.
I have added various Localization keys from various Telerik controls in there and translated them.
In App.xaml.cs constructor I call:
TelerikLocalizationManager.Manager.ResourceManager = TelerikResource.ResourceManager;
InitializeComponent();This works fine and my Telerik controls are translated.
Now the user can change the culture from the application. I call this method:
public void SetCulture(CultureInfo culture)
{
MobileGeneratedLocalization.Culture = culture;
TelerikResource.Culture = culture;
TelerikLocalizationManager.Manager.ResourceManager = TelerikResource.ResourceManager;
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(null));
}