Completed
Last Updated: 13 Nov 2023 08:21 by ADMIN

Using Telerik UI for .Net MAUI v1.0.1 with latest version MAUI 6.0.400 (Service Release 1) and Visual Studio 2022 17.3.0 Preview 2.0 generates an error,

Severity Code Description Project File Line Suppression State
Error PRI175: 0x80073b0f - Processing Resources failed with error: Duplicate Entry. MauiAppTest C:\Samples\MauiAppTest\MauiAppTest\WINAPPSDKGENERATEPROJECTPRIFILE 1

Unplanned
Last Updated: 31 May 2022 08:56 by ADMIN
can't resolve RadDockLayout.

This is the specific error:../MainPage.xaml(3,3): Error XFC0000: Cannot resolve type "http://schemas.telerik.com/2022/xaml/maui:telerik:RadDockLayout". (XFC0000) (MOBLZ_MAUI) XamlC

Workaround: 
add x:name to controls
Completed
Last Updated: 15 Jun 2022 13:44 by Nathaniel

Update Visual Studio 2022 Preview to 17.3.0 Preview 1.0.

Create a new MAUI application using the "Telerik .NET MAUI App (Preview) (Progress). (Attached).

Build the application (test done targeting "Windows Machine"; net6.0-windows10.0.19041.

Two errors will appear in the Error List window:

Severity Code Description Project File Line Suppression State
Error PRI175: 0x80073b0f - Processing Resources failed with error: Duplicate Entry. TelerikMauiApp2 <FullPathOmitted>\TelerikMauiApp2\WINAPPSDKGENERATEPROJECTPRIFILE 1
Error PRI222: 0x80073b0f - Unspecified error occurred. TelerikMauiApp2 <FullPathOmitted>\TelerikMauiApp2\WINAPPSDKGENERATEPROJECTPRIFILE 1

These errors are typically seen when some component is not at the same version as the framework. In this case, Telerik UI for .NET MAUI 0.8.0 targets RC2 according to the release notes.

Declined
Last Updated: 20 Apr 2022 06:25 by ADMIN
Created by: Pedro
Comments: 1
Category: UI for .NET MAUI
Type: Bug Report
0

Dear Support,

I am trying out the DotNet MAUI.

Have encountered an error in building the app after installing Telerik.UI.for.Maui.

Without the Telerik UI, it is ok.

 

Have followed :

https://docs.telerik.com/devtools/maui/maui-getting-started?_ga=2.73916628.710895815.1650251824-889019473.1646129121

 

Appreciate any assistance

 

Regards

Pedro

Declined
Last Updated: 13 Apr 2022 11:34 by ADMIN
Created by: David
Comments: 1
Category: UI for .NET MAUI
Type: Bug Report
0
After updating VS2022 Preview to the April 12 Release, at least 3 Telerik Renderers are no longer supported for Android: EntryRenderer, EntryRendererBase, and LegendRenderer. Error in all cases is implementation of Android.Runtime.IJavaObject fails to inherit Java.Lang.Object or Java.Lang.Throwable.
Completed
Last Updated: 18 Jan 2023 12:44 by ADMIN
Release 5.0.0

A number of RadDataGrid properties can be successfully set in App.xaml, but setting others causes the control to display nothing -- at least in Android.

While I have not tested all possible settings, these results were found experimentally:

Can be used: BackgroundColor, DataOperationIndicatorMode, GridLinesThickness, HorizontalOptions, LoadOnDemandMode, Margin, MinimumHeightRequest, SelectionMode, UserSortMode, VerticalOptions, and ViewportBufferHeight.

Cannot be used in App.Xaml style: AutoGenerateColumns, GridLinesColor, GridLinesVisibility, LoadOnDemandBufferItemsCount, RowHeight, and SelectionUnit.

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: 23 Mar 2022 14:21 by ADMIN
Created by: Chris
Comments: 2
Category: UI for .NET MAUI
Type: Bug Report
0

I'm running a new preview installation of Visual Studio Preview (latest) as recommended by the docs. When trying to run the CryptoTracker example for the first time, I receive this error. I'm trying to run this on an iOS simulator that connected without any issues while pairing. Any help would be appreciated :)

Declined
Last Updated: 18 Mar 2022 18:36 by ADMIN

I connected my Mac mini through VS2022, I can deploy the hello world app to the IOS simulator. After I installed Telerik for MAUI 0.5.0. It says "Ditto" Exited with Code 1. I cannot use the IOS simulator for debugging, but no error for Android and Windows platform.

Declined
Last Updated: 06 Jul 2022 11:05 by ADMIN
Created by: Rod
Comments: 2
Category: UI for .NET MAUI
Type: Bug Report
0

I have a form with a RadDataGrid on it.

I am trying to bind it's itemssource with the following code:

var products = JsonSerializer.Deserialize<List<Product>>(response);
dataGrid.ItemsSource = products;

No data is showing up in the grid.

If I set the value in the Constructor of the form (like in the demo code provided it binds fine.)

private void OnCounterClicked(object sender, EventArgs e)
{

      try
      {
          var criteria = txtSearchBox.Text;
          var response = client.DownloadString($@"http://rebelscum/apiswise/product/search?searchCriteria={criteria}");
       
          var products = JsonSerializer.Deserialize<List<Product>>(response);
          dataGrid.ItemsSource = products;
       
        }
        catch (Exception ex)
      {
       
          var x = 1;
      }

 

    <telerikDataGrid:RadDataGrid x:Name="dataGrid" Grid.Row="3" AutoGenerateColumns="False" >
                <telerikDataGrid:RadDataGrid.Columns>
                    <telerikDataGrid:DataGridTextColumn PropertyName="id" 
                                                        HeaderText="Id">
                        <telerikDataGrid:DataGridTextColumn.CellContentStyle>
                            <telerikDataGrid:DataGridTextCellStyle TextColor="Green" 
                                                                   FontSize="15" 
                                                                   SelectedTextColor="Orange"  />
                        </telerikDataGrid:DataGridTextColumn.CellContentStyle>
                    </telerikDataGrid:DataGridTextColumn>
                    <telerikDataGrid:DataGridTextColumn PropertyName="description1" 
                                                        HeaderText="Description">
                        <telerikDataGrid:DataGridTextColumn.CellContentStyle>
                            <telerikDataGrid:DataGridTextCellStyle TextColor="Green" 
                                                                   FontSize="15" 
                                                                   SelectedTextColor="Orange"  />
                        </telerikDataGrid:DataGridTextColumn.CellContentStyle>
                    </telerikDataGrid:DataGridTextColumn>
                </telerikDataGrid:RadDataGrid.Columns>
            </telerikDataGrid:RadDataGrid>
Declined
Last Updated: 02 Mar 2022 16:27 by ADMIN
Created by: Daniel
Comments: 4
Category: UI for .NET MAUI
Type: Bug Report
0

Hi,

I think is bug :

<telerikInput:RadEntry x:Name="txtName" WatermarkText="User Name" HorizontalOptions="Center" VerticalOptions="Center" WidthRequest="200"   Text="test"/>

In this case you do not see the Text property value "test".

Thanks,

Declined
Last Updated: 01 Mar 2022 06:55 by Daniel
Created by: Daniel
Comments: 4
Category: UI for .NET MAUI
Type: Bug Report
0

Hi,

I tried to install MAUI from NuGet packets , and is not seen ? Why?

Thanks,

Declined
Last Updated: 28 Feb 2022 14:35 by Daniel
Created by: Daniel
Comments: 4
Category: UI for .NET MAUI
Type: Bug Report
1

Hi,

I'm using this link to download and install MAUI controls.

I did it but I can't run the solution:CryptoTracker

I have this error

My net.config content is:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <packageSources>
    <clear />    
    <add key="nuget" value="https://api.nuget.org/v3/index.json" />
    <add key="dotnet6" value="https://aka.ms/dotnet6/nuget/index.json" />
    <add key="skiasharp" value="https://aka.ms/skiasharp-eap/index.json" />
   <add key="local" value ="../../Packages" /> 
  </packageSources>
  <activePackageSource>
    <add key="All" value="(Aggregate source)" />
  </activePackageSource>
  <disabledPackageSources />
</configuration>

 

Declined
Last Updated: 28 Feb 2022 14:06 by ADMIN
Created by: Daniel
Comments: 2
Category: UI for .NET MAUI
Type: Bug Report
0

Hi,

I download CrytoTrackr solution from github and get the given error:

Severity Code Description Project File Line Suppression State
Error NU1102 Unable to find package Telerik.UI.for.Maui with version (>= 0.5.0)
  - Found 1 version(s) in PackageSource [ Nearest version: 0.4.0 ]
  - Found 0 version(s) in C:\Program Files\dotnet\library-packs
  - Found 0 version(s) in dotnet6
  - Found 0 version(s) in skiasharp
  - Found 0 version(s) in nuget CryptoTracker C:\Program Files (x86)\Progress\Telerik UI for .NET MAUI 0.4.0\maui-samples-main\Samples\CryptoTracker\CryptoTracker\CryptoTracker.csproj 1

 

Thanks,

Declined
Last Updated: 25 Feb 2022 14:43 by ADMIN
Created by: David
Comments: 1
Category: UI for .NET MAUI
Type: Bug Report
0
In code-behind or view model I would like to execute a particular procedure for a CellTap event. Your SDK examples do not seem to include any such example. How do I achieve this?
Declined
Last Updated: 28 Dec 2021 20:48 by ADMIN
Severity Code Description Project File Line Suppression State
Error MSB6006 "java.exe" exited with code 1. SDKBrowserMaui C:\Program Files\dotnet\packs\Microsoft.Android.Sdk.Windows\31.0.101-preview.10.59\tools\Xamarin.Android.D8.targets 79
Completed
Last Updated: 20 Jul 2021 12:36 by ADMIN
Created by: Christian
Comments: 1
Category: UI for .NET MAUI
Type: Bug Report
1

Please update the global.json file in your demo application to the new Version of the .NET SDK 


{     
    "sdk": 
    {         
        "version": "6.0.100-preview.6.21355.2",
         "rollForward": "disable",
         "allowPrerelease": true     
    }
 }

1 2 3