I am trying to route to the current page with different param with no avail. I have a combo box that triggers:
this.router.navigate([\'page\', selectedId]);
The simplest way I found, by subscribing the router and then reload the page:
this.router.navigate(['page', selectedId]).then(page => { window.location.reload(); });