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: 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: 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: 22 Aug 2023 13:59 by ADMIN
If we define the Axis (GaugeLinearAxis) Min and Max from -10 to 200, and the GaugeBarIndictor value is set to 60, the Fill starts at -10 and ends at 190.
Declined
Last Updated: 27 Jul 2023 05:57 by ADMIN
Created by: Larry
Comments: 0
Category: RichTextEditor
Type: Bug Report
0
When setting TextColor to the editor, the color does not change. 
Declined
Last Updated: 20 Jul 2023 09:34 by ADMIN
Created by: Gerard
Comments: 4
Category: DataGrid
Type: Bug Report
0
see image of line overwriting in Datagrid from latest release 
Declined
Last Updated: 19 Jun 2023 12:40 by ADMIN
Created by: Daniel
Comments: 5
Category: DataGrid
Type: Bug Report
3

Hi Team,

I have attached a reproducible. Open DashboardView.xaml, there you'll find the DataGrid.

Run the project on Windows and take the following steps:

  • Step 1. Run the app and click Button 1 to load an instance of this ContentView
    • Observe => The DataGrid renders as expected
  • Step 2. Click Button 1 again to reset and load a new instance of this ContentView
    • Observe => The DataGrid will NOT render (you can repeat this step multiple times)
  • Step 3. Resize the app window
    • Observe the DataGrid will be rendered again

The only way I could get it to render again was by resizing the app window, even calling InvalidateMeasure(SizeChanged) didn't work.

 

The logic is simple, the button click just clears MainPage.xaml's container children and adds a new instance of DashboardView:

private void OnButton1Clicked(object sender, EventArgs e)
{
    currentContentViewHolder.Children.Clear();
    currentContentViewHolder.Children.Add(new DashboardView());
}
Declined
Last Updated: 19 Jun 2023 12:36 by ADMIN
Created by: Legrand
Comments: 1
Category: UI for .NET MAUI
Type: Bug Report
0

If I uncomment "HorizontalStackLayout", the image is not displayed.

I want to display 2 Imageeditor in the same tabview, how to do this ?

        <telerik:RadTabView 
            telerik:RadDockLayout.Dock="Left"
            x:Name="tabView" AutomationId="tabView"
            HeaderPosition="Bottom"
            >
            <telerik:TabViewItem HeaderText="Face 1">
                <!--<telerik:RadImageEditorToolbar ImageEditor="{x:Reference imageEditor}">
                    </telerik:RadImageEditorToolbar>-->

                <!--<HorizontalStackLayout>-->
                    <telerik:RadImageEditor x:Name="imageEditor1" 
                        MinZoomLevel="0.1" 
                        MaxZoomLevel="20"
                        Source = "{Binding DisplayedPhoto, TargetNullValue={versares:ImageResource Images.palette.png}}"
                                       />

                    <!--<telerik:RadImageEditor x:Name="imageEditor2" 
                        MinZoomLevel="0.1" 
                        MaxZoomLevel="20"
                        Source = "{Binding DisplayedPhoto, TargetNullValue={versares:ImageResource Images.palette.png}}"
                                       />-->
                <!--</HorizontalStackLayout>-->

            </telerik:TabViewItem>
            <telerik:TabViewItem HeaderText="Face 2">
                <Label Margin="10" Text="This is the content of the Folder tab" />
            </telerik:TabViewItem>
        </telerik:RadTabView>

Declined
Last Updated: 08 May 2023 12:51 by ADMIN
Created by: Stephen
Comments: 8
Category: UI for .NET MAUI
Type: Bug Report
0

I don't have definitive proof on when it started but I did update my Telerik.UI.for.Maui NuGet package from Trial to an official licensed version and that is when I started to see bizarre behavior for the ButtonToolbarItem control. Suddenly, NO FONT ICONS show! Also, in my log file, I see this:

Unable to load font 'TelerikFont'.

I don't have this font installed in my Maui Resources\Fonts folder nor do I load it in my MauiProgram ConfigureFonts extension method for the MauiApp builder. It was working until two days ago.

I turned on BLAST mode in my debugger where I was seeing exceptions being thrown all over the place with regard to loading fonts. I am up against a crucial investor funding demo so I do not have the time to dig down to the core of this issue at the moment. This issue I am logging is there for you to ask me questions on things I can verify so we can work on this together.

What are some of the things you need me to do or look at to report back... The fact that NONE of my FontImageSource icons are being displayed in my RadToolBar ButtonToolbarItems is suspect. The reporting of the TelerikFont is even more suspect. I wasted a TON of valuable time today trying to find a workaround, but none could be found. GitHub Copilot and ChatGPT kept giving me bogus answers for properties on your controls that don't exist which only exacerbated my frustration. I tried to use PNG files as the icon, but your ButtonToolbarItem image source only allows font image sources which I think is a very bad design decision on your behalf. What if a font does not provide the correct image I wish to display? You really should allow png images to be used on these buttons!!!

Like I said, it was working up until several days ago...

Thanks, Steve

Declined
Last Updated: 26 Apr 2023 21:53 by ADMIN
Created by: Legrand
Comments: 2
Category: UI for .NET MAUI
Type: Bug Report
0

Hello,

 

I'm using an horizontal listview, it's working well. But when I put in in a RadDocklayout, nothing is displayed. What am I doing wrong ?

 

See attached project.

 

Other question : is it possible to have cell fitting to the text inside the listview (ItemLength="*") ?

 

Regards

Declined
Last Updated: 26 Apr 2023 17:17 by Stephen

I have three RadDataForms in my login workflow. I have tried all of the various CommitModes and ValidationModes to prevent this error, but nothing seems to prevent these errors from manifesting.

I have a data form that has two fields: Username and Password. When this form is FIRST displayed, what appears to be validation errors (formatted error log output):



----------------------------------
2023-04-26 09:22:18.9231 WARN  
  Call site:         BindingDiagnostics.SendBindingFailure
  Method name:       Microsoft.Maui.Controls.Xaml.Diagnostics.BindingDiagnostics.SendBindingFailure
  Line:              0
  Exception Type:    
  Exception Message: 
  Stack Trace:    
  Additional Info:   '(null)' cannot be converted to type 'System.Boolean'
----------------------------------
----------------------------------
2023-04-26 09:22:18.9330 WARN  
  Call site:         BindingDiagnostics.SendBindingFailure
  Method name:       Microsoft.Maui.Controls.Xaml.Diagnostics.BindingDiagnostics.SendBindingFailure
  Line:              0
  Exception Type:    
  Exception Message: 
  Stack Trace:    
  Additional Info:   '(null)' cannot be converted to type 'System.Boolean'
----------------------------------

Then, I have a different RadData form that has five fields, First Name, Second Name, Email Address, Password and Password Confirmation. This leads to:

----------------------------------
2023-04-26 09:22:46.6821 WARN  
  Call site:         BindingDiagnostics.SendBindingFailure
  Method name:       Microsoft.Maui.Controls.Xaml.Diagnostics.BindingDiagnostics.SendBindingFailure
  Line:              0
  Exception Type:    
  Exception Message: 
  Stack Trace:    
  Additional Info:   '(null)' cannot be converted to type 'System.Boolean'
----------------------------------
----------------------------------
2023-04-26 09:22:46.6821 WARN  
  Call site:         BindingDiagnostics.SendBindingFailure
  Method name:       Microsoft.Maui.Controls.Xaml.Diagnostics.BindingDiagnostics.SendBindingFailure
  Line:              0
  Exception Type:    
  Exception Message: 
  Stack Trace:    
  Additional Info:   '(null)' cannot be converted to type 'System.Boolean'
----------------------------------
----------------------------------
2023-04-26 09:22:46.7018 WARN  
  Call site:         BindingDiagnostics.SendBindingFailure
  Method name:       Microsoft.Maui.Controls.Xaml.Diagnostics.BindingDiagnostics.SendBindingFailure
  Line:              0
  Exception Type:    
  Exception Message: 
  Stack Trace:    
  Additional Info:   '(null)' cannot be converted to type 'System.Boolean'
----------------------------------
----------------------------------
2023-04-26 09:22:46.7018 WARN  
  Call site:         BindingDiagnostics.SendBindingFailure
  Method name:       Microsoft.Maui.Controls.Xaml.Diagnostics.BindingDiagnostics.SendBindingFailure
  Line:              0
  Exception Type:    
  Exception Message: 
  Stack Trace:    
  Additional Info:   '(null)' cannot be converted to type 'System.Boolean'
----------------------------------
----------------------------------
2023-04-26 09:22:46.7174 WARN  
  Call site:         BindingDiagnostics.SendBindingFailure
  Method name:       Microsoft.Maui.Controls.Xaml.Diagnostics.BindingDiagnostics.SendBindingFailure
  Line:              0
  Exception Type:    
  Exception Message: 
  Stack Trace:    
  Additional Info:   '(null)' cannot be converted to type 'System.Boolean'
----------------------------------

These errors are all encountered on the form's first load. Nothing has been entered into any field. No call to any validation methods is made. 

Here is how my general data form configuration is done:


<telerik:RadDataForm
    x:FieldModifier="public"
    x:Name="SignUpForm"
    Grid.Row="0"
    CommitMode="Explicit"
    Loaded="SignUpFormOnLoaded"
    Margin="0,5,0,0"
    Style="{StaticResource DataFormStyle}"
    ValidationMode="Explicit">

I have attached the three classes I use as the binding context. I have tried None, Explicit, and LostFocus as settings for the two modes and it has no effect. While these errors look harmless and the form does provide error-checked data upon validation, I simply hate having any unnecessary errors in my log files.

What can I do to prevent these errors?

Thanks!

Steve

Declined
Last Updated: 15 Mar 2023 12:22 by ADMIN

SDKBrowserMaui application, change PopupStyling.xaml and see that text changes are not reflected in the control.

For example, changing it to:

            <Style TargetType="Button" x:Key="cancelButtonStyle">
                <Setter Property="BackgroundColor" Value="Transparent"/>
                <Setter Property="Text" Value="bob"/>
                <Setter Property="TextColor" Value="#1188FF"/>
            </Style>

Text is not applied. It affects all pickers.

Workaround: 

Set Accept and Cancel Button text properties to the pickers: 

<telerikInput:RadDatePicker >
            <telerikInput:RadDatePicker.SelectorSettings>
                <telerikInput:PickerPopupSelectorSettings 
                                                          HeaderLabelText="Date Picker"
                                                          AcceptButtonText="Yes"
                                                          CancelButtonText="X"/>
            </telerikInput:RadDatePicker.SelectorSettings>
        </telerikInput:RadDatePicker>

Declined
Last Updated: 01 Mar 2023 17:03 by ADMIN

I am using RadAutoComplete inside DataGridTemplateColumn CellTemplate.

it loads data correctly when load first time, but when I update value, it not changing for AutoComplete

 

Declined
Last Updated: 27 Feb 2023 13:45 by ADMIN
Created by: Marc
Comments: 1
Category: ListPicker
Type: Bug Report
3
There is a layout issue in the popup, then the text is longer. With shorter text no issues. 
1 2