The old https://nuget.telerik.com/nuget server is obsolete since November 2024. If you use it the following error occurs:
Failed to retrieve information about 'Telerik.UI.for.Maui' from remote source 'https://nuget.telerik.com/nuget/FindPackagesById()?id='Telerik.UI.for.Maui'&semVerLevel=2.0.0'.
As a solution use the v3 server. To redirect your feed to the NuGet v3 protocol, all you have to do is to change your NuGet package source URL to https://nuget.telerik.com/v3/index.json The new v3 API is faster, lighter, and reduces the number of requests from NuGet clients. The new v3 protocol offers faster package searches and restores, improved security, and more reliable infrastructure. For more details about the Telerik NuGet Server review the Telerik MAUI NuGet Server documentation.
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?
I configured the application to use customized Theme Colors (Swatches) following the link:
Next as requirement I should change the Theme Color (Swatch) at run-time based on the device, using C# code, the only link I found was:
https://docs.telerik.com/devtools/maui/knowledge-base/change-telerik-theme-runtime
But here the Telerik Theme is changed at run-time using only pre-defined Telerik Themes. So my question is: how can I change Default Theme Colors (Swatches) at run-time using C# code?
Thanks
Hi,
Is it possible to completely disable interaction while still allowing navigation on the scheduler?
I'm using custom appointments that are based on an abstract class, and when I tap on a slot, I get an exception because it can't create an appointment because the class is abstract.
I don't want to create appointments or edit them, I just want to display them and keep my class abstract
Thanks
I am trying to style the background color of Rows in a RadDataGrid by the following the SDKBrowser MAUI Example (from GitHub).
RowBackgroundStyleSelector seems to be obsolete/not found in new versions of telerik .net maui...
Using a class that returns a Style based on a Property value (implemeting IStyleSelector as the SDKBrowser example).
In the SDKBrowser example the binding is direct: (older version of .net maui telerik)?
How can I now bind the Row Background Style Color of a telerik:RadDataGrid in the new versions?
Dear Telerik,
Can we customize radEntry of AutoComplete - like: add new button after Clear button?