The Application and Section names are case sensitive and the id is required. In addition I found that this method does not remove querystring params. Specifically, the create parameter that comes from the tree. To remove this or change query params use the following.
$location.path('/Application/Section/Template/Id').search({});
//or to set / change value
$location.path('/Application/Section/Template/Id').search({param:value});
Navigation Service on ng-table's ng-click event
Hi,
I am trying to navigate the control on ng-click to a view of a custom section.
this is the ng-click on td
this is my js file
i was playing with navigation services but didnt find anything there :(
Is there any service available for doing it in umbraco?where we can specify the path and querystring parameters.
Thanks,
I struggled with this as well and found that using the angular $location service works, but not sure if there is an Umbraco specific service.
The Application and Section names are case sensitive and the id is required. In addition I found that this method does not remove querystring params. Specifically, the create parameter that comes from the tree. To remove this or change query params use the following.
is working on a reply...