cancel
Showing results for 
Search instead for 
Did you mean: 

How to create RoadMap?

Former Member
0 Kudos

I am new in this domain. I have to create RoadMap . I have made five different local development projects in which there is five different views. I want to join it through the RoadMap in which I want to give three different buttons like Previous, Next and Save and through that I can change the views.

Can anyone give me the idea in detail so that I can easily understand the procedure?

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi ,

clicking on a Roadmap step can lead to a view by the following code..

Assign an action "StepSelected" to the RoadMap.onSelect event. Bind the RoadMap.selectedStep property to a context attribute "SelectedStepId" of type "string".

In the action handler, you can now read the (new) selected step from the context and navigate to the target view:

void onStepSelected( )

{

final String stepId = wdContext.currentContextElement().getSelectedStepId();

if ("<IDstep0>".equals(stepId))

{

wdThis.wdFirePlugTo<target-view-for-step0>;

}

else if (...)

{

}

}

karthik.

Answers (1)

Answers (1)

Former Member
0 Kudos
Former Member
0 Kudos

Hi karthi,

I gone through this link..but can u please prvoide me any sample tutorial for same

Former Member
0 Kudos

Hi karthi,

I have already gone through this link.Can you give me some idea through coding?