Hello, I am running into two issues with the RadWizard and related controls. Here is the scenario we have for our page setup:
The first "step" of the wizard contains a RadSearchBox and a RadGrid. The user locates a client from the SearchBox and their information is loaded into the grid. The user can then click on an Edit button on the grid row for the record they want to edit.
At this point we then load all of the data for that record into the next wizard step. What we want to do at this point is automatically switch to the next step from the server and then update the step's title from "Add New Record" to "Edit Record".
I have been searching for a way to do this about six months. We are using a fairly old build of Telerik, I believe circa Q1 or Q2 2013. I have tried the following but they have not worked:
Changing the active step via the RadWizard1.ActiveStepIndex property, setting RadWizard1.Steps(0).Active to false and (1) to true
For changing the Title I have tried RadWizard1.Steps(1).Title and tried setting the title directly using RadWizardStep2.Title
None of those have worked either within the Edit button OnClick function nor within the PageLoad or PageLoadCompleted functions for the page (I had thought maybe the default properties for the wizard ands steps were overwriting the changes on postback).
I have not tried using a Javascript function yet but we would like to do this server-side if possible.
Thanks.