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)); }
Hi Team,
I am using RadSideDrawer, and found that the RadSideDrawer is not invoking the DrawerOpening and DrawerOpened events when making the DrawerContent visible by sliding the screen.
CODE:
Telerik version: 7.1.0.
Device: IPad Pro (3rd generation), IOS 18.5.
Please provide if there is any workaround.
Thanks & Best Regards,
Mohammed Rameez Raza (Rameez).
I added one Event(("sideDrawer_DrawerOpening")) for RadSideDrawer control in xaml file and I implemented that Event in xaml.cs file. That event is not calling specifically when I executed from IOS platform in the mobile app. and That same Event is calling when I Run the application from the Windows and Android platforms. It is not working for IOS platform.
Can you provide solution for this ASAP.
Hello i have a few questions regarding intercepting certain events.
Notice the Icon on the side, it was originally added ontop of the dayname bar as a test but then we remembered that the bar gets pushed down for the picker.
I am using a RadDataGrid with SelectionMode set to Multiple. I have bound the SelectedItems to an observableCollection and this al works fine. I have enable filtering on colums and with the SearchPanel which works fine.
I can now selected multiple items and then apply a filter. Now I would like to access all items that are filtered and selected. The SelectedItems contains all selected items, filtered and unfiltered but only want the filtered (+ selected) ones.
Is there a property that contains the filtered items so I can intersect it with the SelectedItems?
If not can I apply the filters to the ItemsSource my self and get the filtered items this way?
Is it possible to get the list of filtered AND selected items any other (simple) way?