On Dropdown item click how to progress progressbar and simultaneously scroll down in a page.

0
Hi Team, Need your guidance. On clicking on Dropdown item how to progress progressbar and simultaneously scroll down in a page.
asked
1 answers
0

You should use an on-change event on the dropdown item. In there, you can call a nanoflow. In the nanoflow:

  • Change the value of the attribute used on the progress bar widget using a Change Object action
  • Scroll down by using a JavaScript action. For this you’ll need to write some JavaScript to scroll the page to where you want to go. The exact code depends on:
    • your page layout – which DOM element of your page actually does the scrolling
    • the target object – which DOM element you’re trying to bring into view

 

 

answered