I\'m building a dashboard system in AngularJS and I\'m running into an issue with setting the url via $location.path
In our dashboard, we have a bunch o
If I understood your question right, you want to,
You can configure only the first route in the routerConfig and use RouteParams to identify if the maximized widget is passed in the params in the controller of this configured route and maximize the one passed as the param. If the user is maximizing it the first time, share the url to this maximized view with the maximizedWidgetId on the UI.
As long as you use $location(which is just a wrapper over native location object) to update the path it will refresh the view.