This question is locked. New answers and comments are not allowed.
I want to use RadWizard in such a case where some grid value will be selected by user then some set of action will be called in next page. Please advice for RadWizard.
4 Answers, 1 is accepted
0
Accepted
Hi Pravin,
Thank you for your interest in our products. May I ask you for some additional information about what exactly you are trying to achieve. What do you mean by some grid value will be selected? In order to take action when some sort of selection is made in a RadGridView you can use the SelectionChanged event. You can read more about that at the Selection events article.
May I also ask you to clarify what you meant by "some set of action will be called in next page". Does that mean that if a value changes in the RadGridView, the wizard should go to the next page, or maybe some values of the RadGridView should be used in the next page? Can you provide some steps as to how the process you are going for should look like? If you can provide a picture demonstrating what should happen or prepare a sample project and open a support ticket with it attached, it will be really helpful.
Thank you in advance for your cooperation.
Regards,
Vladimir Stoyanov
Progress Telerik
Thank you for your interest in our products. May I ask you for some additional information about what exactly you are trying to achieve. What do you mean by some grid value will be selected? In order to take action when some sort of selection is made in a RadGridView you can use the SelectionChanged event. You can read more about that at the Selection events article.
May I also ask you to clarify what you meant by "some set of action will be called in next page". Does that mean that if a value changes in the RadGridView, the wizard should go to the next page, or maybe some values of the RadGridView should be used in the next page? Can you provide some steps as to how the process you are going for should look like? If you can provide a picture demonstrating what should happen or prepare a sample project and open a support ticket with it attached, it will be really helpful.
Thank you in advance for your cooperation.
Regards,
Vladimir Stoyanov
Progress Telerik
Try our brand new, jQuery-free Angular 2 components built from ground-up which
deliver the business app essential building blocks - a grid component,
data visualization (charts) and form elements.
0
Pravin
Top achievements
Rank 2
answered on 24 Nov 2017, 03:44 PM
I want to achieve that there will be 3-4 steps (1 step for welcome page) and in second page there will be RadGridView, where user will select some value in grid and depends on that grid row value details will be display in 3rd page.
0
Accepted
Hello Pravin,
In order to add a RadGridView to one of the WizardPages of a RadWizard, you can create a style for that page and set the ContentTemplate property to a DataTemplate containing a RadGridView. You can then bind the properties which you want to display to properties in your ViewModel. I am attaching a sample project where I have added 3 pages to a RadWizard. After you select an Item in the second page it is saved in the SelectedItem property of the ViewModel and then it is shown in the third page. Please take a look at the project and let me know if this works for you.
Don't hesitate to contact us again if you have any further questions.
Regards,
Vladimir Stoyanov
Progress Telerik
In order to add a RadGridView to one of the WizardPages of a RadWizard, you can create a style for that page and set the ContentTemplate property to a DataTemplate containing a RadGridView. You can then bind the properties which you want to display to properties in your ViewModel. I am attaching a sample project where I have added 3 pages to a RadWizard. After you select an Item in the second page it is saved in the SelectedItem property of the ViewModel and then it is shown in the third page. Please take a look at the project and let me know if this works for you.
Don't hesitate to contact us again if you have any further questions.
Regards,
Vladimir Stoyanov
Progress Telerik
Try our brand new, jQuery-free Angular 2 components built from ground-up which
deliver the business app essential building blocks - a grid component,
data visualization (charts) and form elements.
0
Pravin
Top achievements
Rank 2
answered on 01 Dec 2017, 04:38 AM
Dear Sir, Thank you so much for your valuable and useful information. Now it works for me, will let you know, if any issue !!