breadcrumb pattern

In this I have a button called legal situation and when I will click the button it will take look like as below.

but the thing is that see in the breadcrumb pattern one middle thing is coming which I do not need .when i will click the legal situation button the bread crumb pattern should be personal details /legal situation .

And when i click back button it should take me to the page where i got navigated from ,dynamically .
please someone help me in this !

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Senior Developer
    in reply to bisheswart9459

    I don't understand your issue here. Are you saying you don't want to display the development value in this part?


    Please share the complete code snippet.

    Below is what I have asked to try. It is working fine for me. 

    a!buttonLayout(
            primaryButtons: {
              a!buttonWidget(
                label:"Jump Node",
                value:4,
                saveInto: local!currentNodeId
              ),
              a!buttonWidget(
                label: "back",
                value: local!currentNodeId-1,
                saveInto: local!currentNodeId
              )
            }
          )

Children