You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How would I go about this? Let's say I have a table with 5 columns and I want to be able to order by them(on server side), so my route(in state called say table) would look somewhat like url: '/my-table/?orderBy&orderDirection.
Is there any way to do something like $state.createUrl('table', {orderby: 'name', orderDirection: 'ASC'}); and it'd create /my-table/?orderby=name&orderDirection=ASC?
The text was updated successfully, but these errors were encountered:
How would I go about this? Let's say I have a table with 5 columns and I want to be able to order by them(on server side), so my route(in state called say
table
) would look somewhat likeurl: '/my-table/?orderBy&orderDirection
.Is there any way to do something like
$state.createUrl('table', {orderby: 'name', orderDirection: 'ASC'});
and it'd create/my-table/?orderby=name&orderDirection=ASC
?The text was updated successfully, but these errors were encountered: