Completed
Last Updated: 05 Aug 2022 02:37 by Allen
Release 2.3.0
Created by: Allen
Comments: 1
Category: UI for .NET MAUI
Type: Feature Request
1

Hi Team,

Please add a base TFM for net6.0 to the Telerik.UI.for.MAUI libraries so that test projects are compatible with .NET MAUI projects referencing the Telerik package.

Thank you,

Allen

 

Side Note

Adding a MAUI TFM to the test project doesn't appear to be a solution as it doesn't find a test runner for that MAUI target. Here's an example of the type of error when I try that approach:

========== Starting test discovery ==========
Microsoft.VisualStudio.TestPlatform.ObjectModel.TestPlatformException: Testhost process exited with error: You must install or update .NET to run this application.
App: [redacted]\ProjectB.Test\bin\Debug\net6.0-windows10.0.19041.0\testhost.exe
Architecture: x64
Framework: 'Microsoft.Maui.Core', version '**FromWorkload**' (x64)
.NET location: C:\Program Files\dotnet
No frameworks were found.
Learn about framework resolution:
https://aka.ms/dotnet/app-launch-failed
To install missing framework, download:
https://aka.ms/dotnet-core-applaunch?framework=Microsoft.Maui.Core&framework_version=**FromWorkload**&arch=x64&rid=win10-x64
. Please check the diagnostic logs for more information.
   at Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Client.ProxyOperationManager.ThrowOnTestHostExited(Boolean testHostExited)
   at Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Client.ProxyOperationManager.SetupChannel(IEnumerable`1 sources, String runSettings)
   at Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Client.ProxyDiscoveryManager.DiscoverTests(DiscoveryCriteria discoveryCriteria, ITestDiscoveryEventsHandler2 eventHandler)
========== Test discovery aborted: 0 Tests found in 68.4 ms ==========
========== Starting test run ==========
========== Test run finished: 0 Tests (0 Passed, 0 Failed, 0 Skipped) run in < 1 ms ==========

 

 

Unplanned
Last Updated: 04 Aug 2022 12:17 by Jax
Created by: Jax
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
8
I want to enlarge the font size in the option, but there is no fontsize attribute in this control.
Duplicated
Last Updated: 04 Aug 2022 07:01 by ADMIN
  

    <VerticalStackLayout>
        <Label 
            Text="Welcome to .NET MAUI!"
            VerticalOptions="Center" 
            HorizontalOptions="Center" />
        <Label Text="Status:" />
        <telerik:RadComboBox/>

    </VerticalStackLayout>

This works for Android. IOS gives error "Cannot resolve type "http://schemas.telerik.com/2022/xaml/maui:telerik:RadComboBox

But  telerik:RadCheckBox does not have the same problem.

   <VerticalStackLayout>
        <Label 
            Text="Welcome to .NET MAUI!"
            VerticalOptions="Center" 
            HorizontalOptions="Center" />
        <Label Text="Status:" />
        <telerik:RadCheckBox IsChecked="True"/>

    </VerticalStackLayout>     

Will work for IOS and Android.

How do I fix this?

I am using VS Community 2022 Preview 

Version 17.3.0 Preview 6.0

and Telerik.UI.for.Maui.Trial 2.2.0

 

 

 

     
Duplicated
Last Updated: 20 Jul 2022 15:57 by ADMIN
Created by: Steve
Comments: 1
Category: UI for .NET MAUI
Type: Feature Request
12

I have been watching your MAUI product development and the only thing that is holding me back from using your suite is the lack of a Scheduler control. Your competitor, Syncfusion, has one, it looks and works great, but their other controls are lagging. You have more control offerings in your suite, but you don't have a calendar/scheduler control. You release one and I'm a customer just like that!!

Regards, Steve Miller

Unplanned
Last Updated: 13 Jul 2022 12:53 by ADMIN
Created by: Nicolas
Comments: 1
Category: UI for .NET MAUI
Type: Feature Request
1

I just made a little test application using the .NET 6 Preview 6 and MAUI with chart control to see if we can use it for a future project. I was able to display just a basic chart with 1000 points in it, in ascending order on X axis. But the performance is really not there when running on my Android 10 device. I only made a Zoom at factor 2 and use panning right to left and it's not smooth at all. There is nothing in the chart (no grid, no annotations). Just a simple 2 axis chart. I can really not go with this because there will be many more data in our product at the chart need to be fast enough. Maybe it's a settings somewhere that need to be adjusted... Take a note that I was able to run the chart in WinUI project and the performance is correct, but I am on a very fast PC, it is just normal to be fast. Note: There is some kind of deceleration effect when panning, I want to disable it but not found how.

Anyway, it will be really cool if you can provide a very simple MAUI test application with the fastest full screen chart with Pan/Zoom with 1000 points (which for me is really not much data) and the corresponding code to me to validate if your library can do the job. I know that MAUI and .NET 6 is not released yet, but performance should be there now because it's really close to bug fixing only state now. Thanks.

Duplicated
Last Updated: 11 Jul 2022 06:52 by ADMIN
Created by: Jason
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
10
Scheduler is a critical component. 
Duplicated
Last Updated: 06 Jul 2022 11:12 by ADMIN
Created by: Manish
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
3

Hi Team,

Please introduce a SignaturePad control to Telerik UI for Maui.

Manish

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>
Completed
Last Updated: 06 Jul 2022 10:56 by ADMIN
Created by: Garry
Comments: 2
Category: UI for .NET MAUI
Type: Feature Request
3

When you release your MAUI components, can you please provide well designed working sample projects so that your customers can get started quickly.

These projects should be fully working Line of Business (LoB) apps which is your target market i.e. customers like me.

These samples should connect to ReST Web API's (as is the case with all my KendoUI projects), with a login screen, and then desktop, tablet and mobile 'personalities' with navigation bar, hamburger side menu, caption, search, account drop down, CRUD etc... i.e. all the things modern apps have these days.

You should also produce a 'kitchen sink' app which demonstrates the use of every component in a simple 'app' without use of overly complex code which could confuse or intimidate your customers.

Remember, you are the experts, not your customers, else we would not be buying your products, we'd build our own. Help us to build cool products with your components.

If you have read the famous 'mythical man month', Brookes recommends buying components, especially big ones, the bigger the better. He means buying fully scaffolded, working, documented, easy to understand, application source code e.g. LoB projects which you are best placed to construct for our benefit. Progress has many excellent tech evangelists, I have watched their presentations, and I'd like to see these people involved in constructing these LoB sample apps, as their video presentation skills will also benefit your customers in understanding best practice for building LoB apps.

I hope this helps?

 

Kind Regards

Garry

 

Completed
Last Updated: 06 Jul 2022 10:46 by ADMIN
Created by: Daniel
Comments: 1
Category: UI for .NET MAUI
Type: Feature Request
2
For telerikInput:RadEntry how I make to be password
Duplicated
Last Updated: 05 Jul 2022 19:40 by ADMIN
Created by: Manish
Comments: 1
Category: UI for .NET MAUI
Type: Feature Request
1
We really need these three components to migrate to MAUI. I cant see them in the RoadMap either - 

https://www.telerik.com/support/whats-new/maui-ui/roadmap

Can you give me a rough timeline when these would be available for MAUI? 

 

Thanks,

Manish

Unplanned
Last Updated: 04 Jul 2022 13:40 by Yana
Created by: Yana
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
2
Add a visual keyboard component rendered on the screen that mimics keyboard interactions (instead of the system keyboard).
Unplanned
Last Updated: 20 Jun 2022 13:04 by Wayne
Created by: Wayne
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
1
A MAUI project with Blazor and the Telerik Blazor and MAUI runtime ready to go in the Visual Studio Project?
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.

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
Unplanned
Last Updated: 03 May 2022 08:39 by ADMIN
ADMIN
Created by: Yoan
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
4

Implement a provider for visualizing Google/OpenStreet/Bing maps.

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

Unplanned
Last Updated: 19 Apr 2022 12:19 by ADMIN
Created by: David
Comments: 1
Category: UI for .NET MAUI
Type: Feature Request
0
Telerik controls are heavily dependent on stylings and templates, but documentation (especially MAUI) still heavily favors XAML despite much code is now being written exclusively in C#. I have already spent many hours on failed attempts to code these things in C# that could have been so easily avoided if C# examples were also included. For instance, I have just about given up on how in the world to display alternate strings for a MAUI DataGridBooleanColumn and I am certainly not going to publish an app where the only possible display strings are the two supplied defaults.
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.
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 :)