Change query param url without reload

Hi

First, sorry for my poor english.

Second, sorry for my poor dev skills.

Here is my issue in weweb :

I have a search page where i navigate on results page with query param bind on my variable. On page load i make a rest api and save results on a variable using in a list collection. Until now, everything works.

But on my page results, i have a drawer to change some inputs and make new search.

I tried to make to same thing as on my search page, and navigate on the page ( here the same page), with my query new param but the url does not change. I try to make with external link but the reload is too long this is not what i want . how to fix it ? i need some js ? or i miss something simple? for now i launch the api request to have the right results but in case or refresh the url param are not here so it’s a provisionnal step. I hope i’m clear not sure at all ! enough talking thanks for your help :slight_smile: !!!

Hi Kristine, welcome to the community :waving_hand:

When you use Navigate → Internal page → same page, it will update the URL without reload.

You don’t need custom JS for that.

The key is that the Queries field must contain a non-empty object with the values you want in the URL. For example:

{
  search: searchVar,
  category: selectedCategory
}

Can you share a screenshot on the results you are storing in your “Recherche globale” variable?