cancel
Showing results for 
Search instead for 
Did you mean: 

roadmap static

Former Member
0 Kudos

hi,

am building an application for creation of a resume using the <b>roadmap</b> ui element <b>statically</b>, the 1st step of roadmap displays a page where the user fills in his personal details, the 2nd step is for academic details and the third step displays a page with 2 buttons submit and edit. if user clicks on submit a view is displayed which says "resume submitted" and if user clicks on edit then it returns to the 1st step of the roadmap.

can u give me the steps as to how to approach with this problem?

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Anurupa,

You can create a view set with the top view only showing the road map intially set to 1. The bottom view keeps on changing from personal details, academic details, the buttons screen and finally the submitted screen.

You need to provide navigation on all the buttons for your bottom view area.

While you navigate change your step from1 to 2, 2 to 3 and so on.

Regards,

Murtuza

Former Member
0 Kudos

hi, how to set the initial value as 1?

Former Member
0 Kudos

Define a context and set its initial value to the first step defined in your road map.

1. Create a context attribute of type String name step.

2. Bind this to the SelectedStep property of your RoadMap.

3. Create 3/4 steps as per your requirement with id of the steps as step1, step2 and so on.

Now, you can set the intial selected step to step1 by writing the following line in your WDDoInit()

wdContext.currentContextElement.setStep("step1");

Here step1 is the id of your 1st step in Road Map.

Hope, this is clear now.

Regards,

Murtuza

Message was edited by:

Murtuza Kharodawala

Answers (0)