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
Hello,
Is there any way to call an custom function while column order gets changed by dragging and also can we get both orders i.e old column order and new column order in that callback function?
Thanks
The text was updated successfully, but these errors were encountered:
Did it in dev for now.
like: <table ... on-drag="logDrag($oldOrder, $newOrder)" ... >
then in your controller: $scope.logDrag = function(oldOrder, newOrder) { console.log(oldOrder, newOrder) };
And you will get in console old and new order of headers. Is it what you need ?
Hello,
Is there any way to call an custom function while column order gets changed by dragging and also can we get both orders i.e old column order and new column order in that callback function?
Thanks
The text was updated successfully, but these errors were encountered: