Dear Telerik,
Please let me know how I can view Icons of Telerik font icons & XAML related? Now I only can check some of them on https://docs.telerik.com/devtools/maui/font-icons/examples-icons
Please help me.
Regards,
Xuan.
How can we change the background color and text color of the PdfViewerNavigateToPageToolbarItem entry?
The RadPdfViewerToolbar and ButtonToolbarItemView are set with styling.
Dear all,
After added Telerik Theming to my project by using <UseTelerikTheming>true</UseTelerikTheming> then rebuild my project --> It's OK.
But for the next rebuild - It's alwayls fails with error messages like 'The name 'InitializeComponent' does not exist in the current context' for all files in TelerikTheming folder.
How can I resolse this misktake now?
Thank alots.
We recently discovered that our .NET MAUI APP (8.0.92) throws a Java.Lang.RuntimeException with Font asset not found /data/user/0/app.xyz/cache/telerikfont.ttf.
Here's the full exception detail:
Java.Lang.RuntimeException:
at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw (System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e)
at Java.Interop.JniEnvironment+StaticMethods.CallStaticObjectMethod (Java.Interop, Version=7.0.0.0, Culture=neutral, PublicKeyToken=84e04ff9cfb79065)
at Java.Interop.JniPeerMembers+JniStaticMethods.InvokeObjectMethod (Java.Interop, Version=7.0.0.0, Culture=neutral, PublicKeyToken=84e04ff9cfb79065)
at Android.Graphics.Typeface.CreateFromAsset (Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=84e04ff9cfb79065)
at Microsoft.Maui.FontManager.LoadTypefaceFromAsset (Microsoft.Maui, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null)
We do have a "Font" folder in our Application, but in our understanding this shouldn't be a problem anymore.
We register those fonts, which are in the Fonts folder:
.ConfigureFonts(fonts =>
{
fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
fonts.AddFont("FontAwesomePro-Light-300.otf", "FontAwesomeLight");
fonts.AddFont("FontAwesomePro-Regular-400.otf", "FontAwesomeRegular");
fonts.AddFont("FontAwesomePro-Solid-900.otf", "FontAwesomeSolid");
});
In addition to that, we have a custom CustomFontsProvider for the fonts we use in the RadPdfProcessing lib for .NET MAUI. Those fonts are however in the RAW.
public class CustomFontsProvider : Telerik.Windows.Documents.Extensibility.FontsProviderBase
{
public override byte[] GetFontData(Telerik.Windows.Documents.Core.Fonts.FontProperties fontProperties)
{
string fontFileName = fontProperties.FontFamilyName + ".ttf";
if (fontProperties.FontFamilyName == "Verdana")
{
if (fontProperties.FontStyle == FontStyles.Normal && fontProperties.FontWeight == FontWeights.Normal)
{
fontFileName = $"Verdana.ttf";
}
elseif (fontProperties.FontWeight == FontWeights.Bold)
{
fontFileName = $"Verdana-Bold.ttf";
}
}
var fileStream = FileSystem.Current.OpenAppPackageFileAsync(fontFileName).GetAwaiter().GetResult();
var memoryStream = new MemoryStream();
fileStream.CopyTo(memoryStream);
return memoryStream.ToArray();
}
}
How can we resolve this issue? Any support is appreciated.
Hi,
After upgrading my MAUI application to .NET 9 and installing Telerik.UI.for.Maui 8.0, I've noticed an issue with DataGrid :
Here is a repro project : GitHub
- Start the app
- Go to Options
- Go to Third Page (DataGrid shows up)
- Go back to Options
- Go to Third Page again (DataGrid disappears...)
It was working with .Net 8 and Telerik.UI.for.Maui 7.0
A fix would be appreciated.
Hi,
After upgrading my MAUI application to .NET 9 and installing Telerik.UI.for.Maui 8.0, RadListPicker doesn't respect app theme when it's set to dark mode.
It was working with .Net 8 and Telerik.UI.for.Maui 7.0
A fix would be appreciated.
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 ?
I am using TabView with few Input lines (used for settings) on each tab. I use RadNumericalInput (have also tried RadEntry) as the Input Control.
When I focus an entry on the first tab, the On Screen Keyboard shows up and the screen moves up so that the Input Control is visible while I type in the value.
When I do the same on the second, or the third tab, the screen does not move, and the Input Control is hidden behind the keyboard.
Is this a bug, or is there a way to correct this.
Hal Einarsson.
Hi,
Are you able to provide the default control templates for the RadListPicker so that I can tweak them?
On Android the underline border is too far below the text and does not give a consistent look and feel compared to native controls.
Regards
Anthony