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
I'm using DTInstance.rerender() from defaultRenderer but with multiple calls I got a message in the console saying Argument 'scope' is required. First I thought that my code could be wrong so I decided to check the examples at http://l-lin.github.io/angular-datatables/#/rerender and the defaultRenderer example returned the same issue.
I'm trying to figure it out but no success until this post.
can someone help me?
Thanks
The text was updated successfully, but these errors were encountered:
Yes I applyied the fix in the angular-datatable.js file by changing in render function
function rerender() { oTable.destroy();
DTRendererService.showLoading($elem, $scope);
- render($elem);
+ render($elem,$scope);
}
Hi,
I'm using
DTInstance.rerender()
from defaultRenderer but with multiple calls I got a message in the console sayingArgument 'scope' is required
. First I thought that my code could be wrong so I decided to check the examples at http://l-lin.github.io/angular-datatables/#/rerender and the defaultRenderer example returned the same issue.I'm trying to figure it out but no success until this post.
can someone help me?
Thanks
The text was updated successfully, but these errors were encountered: