I have a dropdown that is supposed to allow the user to override a URL variable passed to page. This is in order to select a year. Say I pass 2010 to a page and the user selects 2015. I have a workflow that says When dropdown year’s value is changed > Go to page
In this I request the current page params to be passed and then append the value of year=This dropdowns value.
The problem is that this workflow seems to adjust the URL - I see 2015 show up in the url string. However the page doesn’t reload. I then tried using a ‘refresh page’ workflow after. It worked, but it shows up there is an error > that action must be the last one in the workflow… So I can’t publish the change that deploys this feature even though it is working
How do I override this URL variable?
I want the page to refresh because about ten API calls have to happen each time the page loads and I need most of them to reload.
Might try another way but I may have to recode the page a bit. First, I want to understand why this approach isn’t working.