Declined
Last Updated: 26 Jul 2024 17:20 by ADMIN

I am in the process of preparing my product for alpha release and I am scrubbing my log files for anything that needs to be cleaned up prior to release. I am seeing two message in my log file that I cannot pinpoint in my code so I am suspecting it is coming from your code. I use NLog to log errors so I format Errors differently than general errors. I am seeing the following two errors being logged on app startup:


----------------------------------
2024-07-26 07:28:06.9283 ERROR 
  Call site:         App.LogException
  Method name:       MobyClient.WinUI.App.LogException
  Line:              0
  Exception Type:    System.ArgumentException
  Exception Message: The parameter is incorrect.

Assets/Fonts/Segoe UI.otf is not a valid absolute URI.
  Stack Trace:       at WinRT.ExceptionHelpers.<ThrowExceptionForHR>g__Throw|39_0(Int32 hr)
  Additional Info:   An error occurred
----------------------------------

and


----------------------------------
2024-07-26 07:28:06.8891 ERROR 
  Call site:         App.LogException
  Method name:       MobyClient.WinUI.App.LogException
  Line:              0
  Exception Type:    System.ArgumentException
  Exception Message: The parameter is incorrect.

Assets/Fonts/Segoe UI.ttf is not a valid absolute URI.
  Stack Trace:       at WinRT.ExceptionHelpers.<ThrowExceptionForHR>g__Throw|39_0(Int32 hr)
  Additional Info:   An error occurred
----------------------------------

In my MauiProgram.cd file, I load many fonts:


		_ = builder
			.UseMauiApp<App> ()
			.UseTelerik ()
			.ConfigureFonts (fonts => {
				_ = fonts.AddFont ("FontAwesome6Brands-Regular-400.otf", "FaBrands");
				_ = fonts.AddFont ("FontAwesome6Duotone-Solid-900.otf", "FaDuotone");
				_ = fonts.AddFont ("FontAwesome6Pro-Light-300.otf", "FaLight");
				_ = fonts.AddFont ("FontAwesome6Pro-Regular-400.otf", "FaRegular");
				_ = fonts.AddFont ("FontAwesome6Pro-Solid-900.otf", "FaSolid");
				_ = fonts.AddFont ("FontAwesome6Pro-Thin-100.otf", "FaThin");
				_ = fonts.AddFont ("OpenSans-Regular.ttf", "OpenSansRegular");
				_ = fonts.AddFont ("OpenSans-Semibold.ttf", "OpenSansSemibold");
				_ = fonts.AddFont ("Poppins-Black.otf", "PoppinsBlack");
				_ = fonts.AddFont ("Poppins-BlackItalic.otf", "PoppinsBlackItalic");
				_ = fonts.AddFont ("Poppins-Bold.otf", "PoppinsBold");
				_ = fonts.AddFont ("Poppins-BoldItalic.otf", "PoppinsBoldItalic");
				_ = fonts.AddFont ("Poppins-ExtraBold.otf", "PoppinsExtraBold");
				_ = fonts.AddFont ("Poppins-ExtraBoldItalic.otf", "PoppinsExtraBoldItalic");
				_ = fonts.AddFont ("Poppins-ExtraLight.otf", "PoppinsExtraLight");
				_ = fonts.AddFont ("Poppins-ExtraLightItalic.otf", "PoppinsExtraLightItalic");
				_ = fonts.AddFont ("Poppins-Italic.otf", "PoppinsItalic");
				_ = fonts.AddFont ("Poppins-Light.otf", "PoppinsLight");
				_ = fonts.AddFont ("Poppins-LightItalic.otf", "PoppinsLightItalic");
				_ = fonts.AddFont ("Poppins-Medium.otf", "PoppinsMedium");
				_ = fonts.AddFont ("Poppins-MediumItalic.otf", "PoppinsMediumItalic");
				_ = fonts.AddFont ("Poppins-Regular.otf", "PoppinsRegular");
				_ = fonts.AddFont ("Poppins-SemiBold.otf", "PoppinsSemiBold");
				_ = fonts.AddFont ("Poppins-SemiBoldItalic.otf", "PoppinsSemiBoldItalic");
				_ = fonts.AddFont ("Poppins-Thin.otf", "PoppinsThin");
				_ = fonts.AddFont ("Poppins-ThinItalic.otf", "PoppinsThinItalic");
				_ = fonts.AddFont ("Segoe-Ui.ttf", "SegoeUi");
				_ = fonts.AddFont ("Segoe-Ui-Bold.ttf", "SegoeUiBold");
				_ = fonts.AddFont ("Segoe-Ui-Regular.ttf", "SegoeUiRegular");
				_ = fonts.AddFont ("Segoe-Ui-Semibold.ttf", "SegoeUiSemibold");
				_ = fonts.AddFont ("Segoe-Ui-Semilight.ttf", "SegoeUiSemilight");
			})
			.ConfigureMobyApplication ();

As you can see, 'Assets/Fonts/Segoe UI.ttf' or 'Assets/Fonts/Segoe UI.otf' is a font I am loading. In fact, all of the 'Segoe' font names use a dash '-' instead of a space in the file name. Also, I only load 'ttf' fonts and not 'otf' fonts for Seqoe fonts. Telerik controls are the only non-standard controls I am using so I am suspecting this font name is being loaded by your controls somehow. Can you please confirm this?

Also, when I went to report this incident, I noticed that you had requested input from me on previous issues I have raised, but I never received any email from you requesting this information. Since I rarely log into this website for anything, I don't know how you expect people to answer your questions if they are not made more visible. Is there a way to subscribe to an issue so I see all updates? I looked over the complete set of items I can add to this issue and none of them seem to be related to answering questions from you. It would be helpful for you to send any and all updates on any issues that have been logged. I just scanned my entire set of email folders and other than messages from your sales department, no other messages were found. Just sayin'...

Declined
Last Updated: 23 Jul 2024 10:06 by ADMIN
Created by: Fandy Backers
Comments: 3
Category: UI for .NET MAUI
Type: Feature Request
0

Asking for a webview which opens external links ( links with a target= element) in the same webview instead of it does do nothing onbios and android, but in windows opens it a browser window with that url of the link!

we need the functionality to overrule the target= function of a link. To the same webview. At this moment we need a hybridwebview functionality! And it would be very handy to have that in a telerik control!

best regards, Fandy

Declined
Last Updated: 02 Jul 2024 12:11 by ADMIN

I'm forced to use RadNumericInput with styling the NumericInputEntry HorizontalTextAlignment set to End

<Style x:Key="rightNumericInputEntryStyle" TargetType="telerik:NumericInputEntry"> <Setter Property="HorizontalTextAlignment" Value="End" /> </Style> ... <telerik:RadNumericInput AutomationId="ageNumeric" EntryStyle="{StaticResource rightNumericInputEntryStyle}" Minimum="0" Value="{Binding Age, Mode=TwoWay}" />


doing this, the value is cut off, when the controls width gets small.
There is some space on the left, which is not used.

Easy to reproduce in the SDK Samples.
I'm not able to find a way changing this

Value in this Screenshot: 123456, cut after 5

any workaround (keeping the value HorizontalTextAlignment="End")  is highly appreciated

Declined
Last Updated: 11 Jun 2024 15:13 by ADMIN
Created by: Matthew
Comments: 1
Category: Scheduler
Type: Feature Request
0
Please implement SpecialSlotStyleSelector for MonthViewDefinition so that we can easily change the weekend column to a different colour - This was available in Xamarin
Declined
Last Updated: 11 Jun 2024 11:41 by ADMIN

I tested streaming data for nested property and the UI does not update. The data is updated in the collection bound to the DataGrid ItemsSource, still the UI doesn't. 

When I enter editing the cell, the UI updates.

 

The issue happens in this case:

 

                <telerik:DataGridNumericalColumn PropertyName="Address.Age"
                                            HeaderText="Age" />

                <telerik:DataGridTextColumn DataMemberBinding="{Binding Address.Age}"
                             HeaderText="Age DataMemberBinding"/>

 

Declined
Last Updated: 14 May 2024 09:38 by ADMIN
Created by: David
Comments: 4
Category: UI for .NET MAUI
Type: Bug Report
1

If this worked in earlier releases, it no longer does.

Declined
Last Updated: 09 May 2024 11:51 by ADMIN

 

Using iOS Simulator (set to iPhone 15 iOS 17.4) - with a DataGrid as below, double-clicking the text cell will crash the app. I have not yet tried on a native device build (not simulator.)


<telerik:RadDataGrid.Columns>
    <telerik:DataGridTextColumn PropertyName="ObjectName" HeaderText="Name"/>
</telerik:RadDataGrid.Columns>

Microsoft Visual Studio 2022 v17.9.6

Microsoft.Maui.Controls 8.0.21

Full Stack Trace:

=================================================================
    Basic Fault Address Reporting
=================================================================
Memory around native instruction pointer (0x1041753b0):0x1041753a0  c0 03 5f d6 c0
03 5f d6 10 29 80 d2 01 10 00 d4  .._..._..)......
0x1041753b0  e3 00 00 54 fd 7b bf a9 fd 03 00 91 cd e2 ff 97  ...T.{..........
0x1041753c0  bf
03 00 91 fd 7b c1 a8 c0 03 5f d6 c0 03 5f d6  .....{...._..._
.
0x1041753d0  70 0a 80 d2 01 10 00 d4 e3 00 00 54 fd 7b bf a9  p..........T.{..
=================================================================
    Managed Stacktrace:
=================================================================
      at <unknown> <0xffffffff>
      at ObjCRuntime.Messaging:bool_objc_msgSendSuper <0x0009a>
      at UIKit.UIResponder:BecomeFirstResponder <0x000e0>
      at Telerik.Maui.Platform.RadMauiEntry:BecomeFirstResponder <0x0004c>
      at Microsoft.Maui.Platform.ViewExtensions:Focus <0x00024>
      at Microsoft.Maui.Handlers.ViewHandler:MapFocus <0x0007c>
      at <>c__DisplayClass6_0:<Add>b__0 <0x00064>
      at <>c__DisplayClass422_0:<MapFocus>b__0 <0x0006c>
      at Microsoft.Maui.Controls.ViewExtensions:MapFocus <0x0013c>
      at Microsoft.Maui.Controls.VisualElement:MapFocus <0x00144>
      at <>c__DisplayClass2_0`2:<ModifyMapping>g__newMethod|0 <0x000b6>
      at <>c__DisplayClass6_0:<Add>b__0 <0x00064>
      at Microsoft.Maui.CommandMapper:InvokeCore <0x0008c>
      at Microsoft.Maui.CommandMapper:Invoke <0x0005a>
      at Microsoft.Maui.Handlers.ElementHandler:Invoke <0x00086>
      at Microsoft.Maui.ElementHandlerExtensions:InvokeWithResult <0x00040>
      at Microsoft.Maui.Controls.ViewExtensions:RequestFocus <0x0006a>
      at Microsoft.Maui.Controls.
VisualElement:Focus <0x00016>
      at Telerik.Maui.Controls.Compatibility.DataGrid.MasterArranger:ArrangeNode <0x00198>
      at Telerik.Maui.Controls.Compatibility.DataGrid.MasterArranger:Arrange <0x000b0>
      at Telerik.Maui.Controls.Compatibility.DataGrid.RadDataGrid:LateArrange <0x003f4>
      at Telerik.Maui.Controls.Compatibility.DataGrid.RadDataGrid:UpdateUI <0x0018a>
      at Telerik.Maui.Controls.Compatibility.DataGrid.RadDataGrid:ArrangeChildren <0x00266>
      at Telerik.Maui.Controls.RadLayoutManager:ArrangeChildren <0x00036>
      at Microsoft.Maui.Controls.Layout:CrossPlatformArrange <0x0003c>
      at Microsoft.Maui.Platform.MauiView:CrossPlatformArrange <0x0005a>
      at Microsoft.Maui.Platform.MauiView:LayoutSubviews <0x00196>
      at System.Object:runtime_invoke_direct_void__this__ <0x00088>
      at <unknown> <0x00000>
      at <unknown> <0xffffffff>
      at UIKit.UIApplication:xamarin_UIApplicationMain <0x000b8>
      at UIKit.UIApplication:UIApplicationMain <0x0006e>
      at UIKit.UIApplication:Main <0x0015a>
      at MauiSandboxThree.Program:Main <0x0002c>
      at <Module>:runtime_invoke_direct_void_string[] <0x0007e>
      at <unknown> <0x00000>
=================================================================
Declined
Last Updated: 29 Apr 2024 12:39 by ADMIN
DateTimePicker's Accept and Cancel commands are not fired in popup mode on WinUI
Declined
Last Updated: 24 Apr 2024 06:40 by ADMIN
Setting TextHorizontalOptions of the DataGridColumnHeaderStyle  to "Center" takes no effect.
Declined
Last Updated: 11 Mar 2024 13:04 by ADMIN

Runtime exception with Microsoft .NET 8.0.100:

 *** NSForwarding: warning: object 0x600002199c20 of class 'Telerik_Maui_Controls_Compatibility_ChartRenderer_iOS_TKExtendedChart' does not implement methodSignatureForSelector: -- trouble ahead
*** NSForwarding: warning: object 0x600002199c20 of class 'Telerik_Maui_Controls_Compatibility_ChartRenderer_iOS_TKExtendedChart' does not implement doesNotRecognizeSelector: -- abort

The issue occurs on:

Nuget - Telerik.UI.for.Maui 6.7.0
Maui Version 8.0.7
.NET SDK 8.0.100
Simulator - iOS 16.4 and 17.2 (Version 15.2 -1019)

Best regards

Declined
Last Updated: 01 Feb 2024 16:53 by David
Created by: David
Comments: 2
Category: DataForm
Type: Feature Request
0

Data Form Editors expose the property EditorStyle to allow setting the input control's overall style. But some input control have multiple styles not so easily set.

As the input control is also the Editor's base content, instead exposing content as the appropriate type allows all of the input controls styles to be set.

Here is my working example in my KingdomContacts app for one editor:

namespace KingdomContacts.Controls;
using Telerik.Maui.Controls;
public class KcNumericDfEditor : DataFormRadNumericEditor
{
    public RadNumericInput? Editor => base.Content as RadNumericInput;
}

I have made similar adaptations for all the other Data Form editors I use. Simple and easy to work with; far easier than guessing what to do with EditorStyle.

Would be even easier if a similar line were inside your editors -- then I would not need to make my own customizations.

Declined
Last Updated: 31 Jan 2024 06:13 by ADMIN

When I compile my project with <WindowsPackageType>None</WindowsPackageType> option, icons ar enot displayed in Telerik controls (like richeditor)

Same project compiled with package  and deployed are ok

 

 

 

 

Declined
Last Updated: 19 Jan 2024 17:37 by ADMIN
Created by: Kevin
Comments: 6
Category: BusyIndicator
Type: Bug Report
0

During data binding, the busy indicator freezes.  This is not a problem with the MAUI ActivityIndicator, however. See the attached video

I created a repo here to reproduce the issue: https://github.com/kklose23/busyindicator-freezing

Note:  I know there's ways to make the data binding in that repo more efficient.  I just wanted a good example.

Declined
Last Updated: 04 Jan 2024 14:18 by ADMIN
Created by: Kevin
Comments: 1
Category: UI for .NET MAUI
Type: Bug Report
0

When the Source of a RadRichTextEditor is set, the TextColor is always black.  Tested on Android:

  <Grid HeightRequest="400"
        WidthRequest="300">
    <telerik:RadRichTextEditor x:Name="RichTextEditorControl"
                               Source="with source text"
                               TextColor="White"
                               BackgroundColor="Green" />
  </Grid>

 

Declined
Last Updated: 04 Jan 2024 13:37 by ADMIN
Created by: Legrand
Comments: 7
Category: UI for .NET MAUI
Type: Bug Report
0

I have an html file with <img src="./images/ForkliftGateMainPage.png" alt="MainPage" width="1600" title="Page principale" />

The image is displayed when I open it with my browser, but not displayed with RadRichtextEditor, Why ?

Declined
Last Updated: 14 Dec 2023 15:49 by ADMIN
Created by: Nico
Comments: 3
Category: ListView
Type: Bug Report
0

When updating to .net8 the following snippet doesn't work with target net8 (maui 8.0.3). Same works with net7 (up to 7.101).
Stops me from targeting net8.


<telerik:RadListView.FooterTemplate>
    <DataTemplate>
        <Grid
            BackgroundColor="{AppThemeBinding Dark={StaticResource ListElementColorDark},
                                              Light={StaticResource ListElementColorLight}}"
            IsVisible="{Binding CanSearchMore}">
            <telerik:RadBorder Padding="8,10" Style="{StaticResource ListItemContainer}">
                <Label HorizontalOptions="Start" Text="{Binding SearchMoreText}" />
            </telerik:RadBorder>
            <Grid.GestureRecognizers>
                <TapGestureRecognizer Command="{Binding SearchMoreCommand}" />
            </Grid.GestureRecognizers>
        </Grid>
    </DataTemplate>
</telerik:RadListView.FooterTemplate>

1. TapGestureRecognizer: Command is not executed / Click not detected
2. Style: Having a PointerOver in "ListItemContainer" works with net7. Doesn't work with net8

Declined
Last Updated: 05 Dec 2023 09:13 by ADMIN
Created by: Sebastian
Comments: 2
Category: DataGrid
Type: Feature Request
1
Currently Filtering UI can be shown when tapping/clicking on the Filter Icon
Declined
Last Updated: 19 Nov 2023 13:29 by ADMIN
When using the GroupGenerated event to apply style to the GroupHeaderLabel, the text in the group cannot be centered. 
Declined
Last Updated: 07 Nov 2023 08:45 by ADMIN

Repro steps:

Put a grid inside a RadBusyIndicator with a button.  On a button click, set IsBusy to true, change the height of the grid, and set IsBusy to false.  The grid height will not be updated.

Another way to reproduce is to add children views to the grid while IsBusy is true.  The children will not be rendered after it's done


This is a regression from a recent Telerik update

Declined
Last Updated: 16 Oct 2023 11:15 by ADMIN
Created by: Xingyu
Comments: 2
Category: UI for .NET MAUI
Type: Feature Request
0
When testing Telerik UI for .NET MAUI, I found that the column names of the DataGrid do not support Chinese. Is there a solution?
1 2 3 4