Completed
Last Updated: 07 Jun 2023 07:42 by ADMIN
Release 5.2.0
Created by: Rolf
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
6

Currently you have the SlideView control for UI for Xamarin, see Xamarin SlideView Documentation | Overview - Telerik UI for Xamarin.

I would like to have this control for UI for .NET MAUI, can you please add it to the backlog?

Thank you,

Rolf

Completed
Last Updated: 15 Nov 2023 08:59 by ADMIN
Release 6.5.0

Error clang++ exited with code 1:

ld: in /Users/.../Library/Caches/Xamarin/mtbs/builds/SDKBrowserMaui/.../obj/x64/Debug/net7.0-ios/iossimulator-arm64/linker-cache/TelerikUI.a(TKChartAnnotation.o), building for iOS Simulator, but linking in object file built for iOS, file '/Users/.../Library/Caches/Xamarin/mtbs/builds/SDKBrowserMaui/.../obj/x64/Debug/net7.0-ios/iossimulator-arm64/linker-cache/TelerikUI.a'

clang: error: linker command failed with exit code 1 (use -v to see invocation) SDKBrowserMaui C:\Program Files\dotnet\packs\Microsoft.iOS.Sdk\16.4.7089\targets\Xamarin.Shared.Sdk.targets 1274

 

Steps to reproduce:

Run the SDKBrowser example from the Telerik UI for .NET MAUI 6.1.0 package following this instruction: https://www.telerik.com/blogs/running-ios-simulator-windows-net-maui

The paired Mac needs to have an Apple silicon (M1 or M2) chip.
Unplanned
Last Updated: 31 Jul 2023 15:00 by Tavi
Created by: Tavi
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
6

Hi Team,

This is a Feature Request to ask Progress Software to build a XAML designer for .NET MAUI. Whether it is inside Visual Studio, or a separate application like Blend, the end goal is the same... to provide developers with a designer surface to develop their XAML UI.

Thank you,

Tavi

Completed
Last Updated: 06 Dec 2022 11:08 by ADMIN
Release 3.0.0
Created by: Dimitrina P
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
5

To present content in an expandable container that can be easily expanded/collapsed by tapping on the header of the control.

Need More Info
Last Updated: 19 Jun 2023 13:03 by ADMIN
Created by: Vishal
Comments: 2
Category: UI for .NET MAUI
Type: Feature Request
5
Take picture via camera and quickly upload pic.
Unplanned
Last Updated: 24 Jul 2023 09:06 by kevin
Created by: kevin
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
5

For Kendo UI there are figma kits and a themebuilder delivered by Telerik.
We want to he same experience for .NET MAUI.

Is it possible for Telerik to deliver a .NET MAUI figma kit?

Completed
Last Updated: 15 Mar 2023 12:10 by ADMIN
Release 5.1.0
Created by: Nathan
Comments: 2
Category: UI for .NET MAUI
Type: Bug Report
5

Hi team,

When deploying to certain platforms, under cetain circumstances, there is an exception that occurs in the DatePicker, TimePicker and a few other controls that rely on the same inner components. The stacktrace looks like it has to do with a default value for AppThemeBinding.

Thank you,

Nathan

Completed
Last Updated: 18 Aug 2023 09:44 by ADMIN
Release 6.1.0
Created by: Prabhav
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
4
Provide support for preview version of .NET 8
Unplanned
Last Updated: 19 Dec 2022 22:59 by Tavi
Created by: Tavi
Comments: 2
Category: UI for .NET MAUI
Type: Feature Request
4

Progress Telerik WPF over the past 2.5/3 years has done a great job in introducing very useful UI concepts in WPF and we've embraced them in our development and our users find them useful. As .NET MAUI is generating greater gravity and interest, the technology remains at a significant distance because of the big feature-parity gap between MAUI and WPF. This is not a complaint as much as it is a notice; as we aren't a UI component authoring technology company new UI component development is not our focus.  I am sure that you guys understand this and I am aware of the difference in design notions given the MAUI and WPF presentation and interactions goals; nonetheless, for ISVs like us, we have to choose the best, most stable, and cost-effective technologies and push the envelope as best as we can manage. So, love the excitement around MAUI but unless there is a way forward whereby one can migrate UI concepts from WPF to MAUI we can wait for MAUI to mature.

Tavi

Unplanned
Last Updated: 15 Jun 2023 06:36 by Curtis
Created by: Dimitrina P
Comments: 1
Category: UI for .NET MAUI
Type: Feature Request
4
Similar to the text field in material design: https://material.io/components/text-fields 
Completed
Last Updated: 11 Oct 2023 08:02 by ADMIN
Release 6.3.0
Created by: Teddy
Comments: 1
Category: UI for .NET MAUI
Type: Feature Request
4
Your WPF input controls have a SelectionOnFocus enum that describes the behavior when a user gives focus to one of those controls. Can that functionality be added to RadEntry in MAUI?

In addition, as a workaround, I tried adding this code to a RadEntry's Focused event to try to select all text:
private void OnEntryFocused(object sender, FocusEventArgs e)
{
    if (sender is RadEntry entry && !string.IsNullOrEmpty(entry.Text))
    {
        entry.CursorPosition = 0;
        entry.SelectionLength = entry.Text.Length;
    }
}
With this code, the first time I click into the entry, it selects all text as expected, but then when I click out of it and click in again, it doesn't select all text. It just places the caret where I clicked. Then I click out and click back in again and it selects all the text, then the next time, it doesn't work. So it goes back and forth between selecting all text and placing the caret where I clicked.
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.

Completed
Last Updated: 03 Oct 2023 08:03 by ADMIN
Release 6.2.0
Created by: Denis
Comments: 3
Category: UI for .NET MAUI
Type: Feature Request
4

I know you are all working on this and are addressing the breaking changes between preview7 to RC1, I wanted to open this Feature Request so that I can be immediately notified when UI for MAUI RC1 support is ready to download and use.

Thank you,

Denis

Unplanned
Last Updated: 06 Mar 2023 08:53 by ADMIN
Created by: Teddy
Comments: 1
Category: UI for .NET MAUI
Type: Feature Request
4
In the WPF Combo Box, in addition to the SelectedItem property, there was also the SelectedValue and SelectedValuePath properties. You could bind to a complex object and then define a SelectedValue and SelectedValuePath so that your binding context didn't need to keep a reference to the entire object being represented in the dropdown. Very useful, for example, when your BindingContext does not have access to the object bound to the combobox's items source, but can instead keep track of a common enum or just a unique string instead. Is there any plan to add that functionality to the MAUI combo box?
Unplanned
Last Updated: 02 Mar 2022 14:17 by ADMIN
Created by: Daniel
Comments: 2
Category: UI for .NET MAUI
Type: Feature Request
3
I need to show wizard process with option to proceed and go back.
Unplanned
Last Updated: 21 Mar 2024 08:59 by ADMIN
Created by: Dennis
Comments: 1
Category: UI for .NET MAUI
Type: Feature Request
3

Progress/Telerik --

I would like Telerik to extend the Microsoft .NET MAUI MediaPicker control to support the selection of MULTIPLE Photos and/or Videos from the Image Gallery.

I believe this is a reasonably standard scenario for use cases where the user takes multiple Photos or Videos with the Camera and then would like to upload them to a server for storage in a web app and database.

The current Microsoft MediaPicker supports the selection of a SINGLE item only.

.NET MAUI - Platform Integration - Media - Photos and Videos

And while there are several GitHub libraries that have done this for Xamarin.Forms (and rely on Xamarin.Essentials), they are either archived or not updated in a timely manner like a 3rd Party - Paid For - Control would be.

Even Telerik/Progress has recently done a Blog Post on how to use the Microsoft Control - Leomaris Reyes published this:

Getting Started with the Media Picker in .NET MAUI

Also, I believe this Feature Request is asking for the same feature:

https://feedback.telerik.com/maui/1552553-upload-images-file-via-in-net-maui

Now, for me personally, I only need multiple image selection.  So, if that's easier without the support for the other pieces, I would be happy.  To be complete, I'm thinking others would need to select multiple videos.

From Ms. Reyes Blog Post....

private async void TakePhoto(object sender, EventArgs e)
{
  FileResult photo = await MediaPicker.Default.PickPhotoAsync(new MediaPickerOptions
  {
    Title = "Select your photo"
  });
                  
  // Here, add the code that is being explained in the next step.
                   
}


The new control would have something like this:

private async void TakePhoto(object sender, EventArgs e)
{
  IEnumerable<FileResult> photos = await RadMediaPicker.PickPhotosAsync(new MediaPickerOptions
  {
    Title = "Select your photos"
  });
                  
  // Here, add the code to loop through and process the selected images
                   
}

 

Please let me know if you require additional information.

Unplanned
Last Updated: 22 Mar 2022 16:23 by Patrick
Created by: Patrick
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
3

Hi Team,

I would like to be able to have a Ribbon component for Windows and MacCatalyst that is just as feature rich as the UI for WPF RibbonView (or at least similar to the UI for WinUI RibbonView).

Unplanned
Last Updated: 28 Feb 2023 22:09 by Peter
Created by: Peter
Comments: 0
Category: UI for .NET MAUI
Type: Feature Request
3

Hi Team,

I would like to be able to have client-side filtering/sorting/grouping capabilities for large backend datasets that cannot be entirely loaded on the client.

As it stands now, the DataGrid (and other data components) can only operate on the data that is has in the local DataView. This means that I need to build a custom filtering solution that prefilters/presorts the backend data before paging and loading it into the DataGrid.

To accomplish the "full view", we need a data layer that understands both the UI as well as the backend. The Telerik UI for WPF product has an excellent solution for this, known as the WPF EntityFrameworkCoreDataSource - Overview - Telerik UI for WPF and the WPF DataServiceDataSource - Overview - Telerik UI for WPF.

If such a feature can be added to Telerik UI for MAUI, it would be an excellent bonus for the component suite in data heavy applications.

Thank you,

Peter

 

Unplanned
Last Updated: 25 Jan 2023 11:40 by Tavi
Created by: Tavi
Comments: 7
Category: UI for .NET MAUI
Type: Feature Request
3

We have been developing our WPF app for some 4.5 years now and use the following controls from Telerik WPF UI control set:

  • PropertyGrid
  • GanttView
  • TimeBar
  • Diagrams
  • Callout
  • Transition
  • Wizard
  • TileList
  • Docking
  • Notify Icon
  • Task Board

* Native User Authentication UI Control that leverages  CommunityToolkit/Graph-Controls

I don't see these UI Controls on the Roadmap for MAUI and that is okay; it just delays our timeline for MAUI adoption. As we aren't a UI Component Control software development company we are dependent on folks like Telerik. This is not a complaint as much as it is just a let you know what some of your customers are doing. We need to be to be on the macOS desktop but native macOS development is very expensive. As a start-up that company that builds native desktop apps this is big deal and our investor take note of such things.

MAUI could help to reduce our development cost but only if we can move to that platform with UI Function set we have in our WPF App and to leverage engineering IP artifacts and development resource.

Tavi

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