[coldbox-3.1.0] Novice Relocating using setNextEvent question

I have two events in my coldbox handler.

viewCategoryProductList

and
viewTopLevelCategoryList

When the user hits the viewTopLevelCategoryList the event adjusts some event variables and then jumps to the core “viewCategoryProductList” event.

However… the setNextEvent switchesthe users URL to the new event… I would like the original viewTopLevelCategoryList to remain in their browser address bar so that when they refresh they hit this url again.

What is the best way to achieve this in coldbox?

Thanks!

Use runEvent() instead.

Thanks!

Just seen this is in the documentation after you mentioned it.

Sorry for such a simple question.