MAUI - Wizard control

1 Answer 762 Views
General Discussions
Daniel
Top achievements
Rank 1
Silver
Bronze
Daniel asked on 28 Feb 2022, 07:11 AM

Hi,

Is there wizard control in MAUI ? or something close ?

I need to show wizard process with option to proceed and go back.

Thanks,

Daniel
Top achievements
Rank 1
Silver
Bronze
commented on 01 Mar 2022, 06:55 AM

If you could add example it will be great.

1 Answer, 1 is accepted

Sort by
0
Antoan
Telerik team
answered on 01 Mar 2022, 03:33 PM

Hello Daniel,

Thank you for your interest in Telerik UI for .NET MAUI.

Currently, our library for .NET MAUI does not support a Wizard Control or one with similar functionality. I have logged this request on your behalf in our feedback portal. You can cast your vote and navigate to the feature request through the following link:

https://feedback.telerik.com/maui/1555798-add-wizard-control 

Regards,
Antoan
Progress Telerik

Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.

Daniel
Top achievements
Rank 1
Silver
Bronze
commented on 10 Mar 2022, 08:25 AM

Hi,

Can you please take the project from:https://www.telerik.com/forums/change-content-of

and in one of the view add grid.

When pressing on it it will show new view or popup and user has to fill it data and move to next step with option to go back.

I would like to have two steps: in first time add first name and last name and in second steps is address.

Thanks,

In advance

Didi
Telerik team
commented on 10 Mar 2022, 12:21 PM

Hi Daniel,

From the provided images it seems you want to achieve scenario with DataGrid control and two buttons at the bottom of the page. Then when the Add button is pressed additional layout will be opened to enter new records in the DataGrid. 

Here are the suggestions you can try: add two pages to the project. 
1st page -> add DataGrid and the buttons
2nd page-> design the page in a way you want and implement the layout needed. 

When the add button is pressed navigate to the second page. How to connect the pages/update the data/ design and implement the layout are considered as custom implementation and have to be done on your side. 


Daniel
Top achievements
Rank 1
Silver
Bronze
commented on 14 Mar 2022, 03:20 PM | edited

Hi,

I'm trying to build the wizard, coming from view with data grid.

On the left I have the navigation bar.

I'm using the sample from  :https://www.telerik.com/forums/change-content-of

I want to navigate to new view, is it good approach.


 private async void OnClicked(object sender, EventArgs e)
    {
		
		App.Current.MainPage = new NavigationPage();
		await App.Current.MainPage.Navigation.PushAsync(new MainPage("View1"), true);
	}
 public MainPage(string view)
    {
        InitializeComponent();

        if(!string.IsNullOrEmpty(view))
        {
            switch (view)
            {
                case "View1":
                    {
                        currentContentViewHolder.Children.Clear();
                        currentContentViewHolder.Children.Add(new SchedulersView());
                        break;
                    }
                default:
                    break;
            }
      
         }
        
    }

Daniel
Top achievements
Rank 1
Silver
Bronze
commented on 15 Mar 2022, 09:04 AM

In this scenario when I press previous I cant see the state of the previous view?

How is can be solved.

Lance | Manager Technical Support
Telerik team
commented on 15 Mar 2022, 12:31 PM

Hi Daniel, this is not Telerik control, so the Telerik Forums isn't a place where you'll get any assistance at this time. To get help for building a custom-developed navigation system, open a StackOverflow or Microsoft Q&Apost instead.

P.S. Instead of trying to re-invent the wheel with your own custom navigation system, I recommend using Shellor FlyoutPage instead (the links are to the Xamarin.Forms documentation because there is no MAUI docs for this during the preview). For assistance with this topic, you can open a thread in StackOverflow.com or Microsoft Q&A.

Tags
General Discussions
Asked by
Daniel
Top achievements
Rank 1
Silver
Bronze
Answers by
Antoan
Telerik team
Share this question
or