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
{{ message }}
This repository was archived by the owner on Feb 2, 2025. It is now read-only.
Uh oh!
There was an error while loading. Please reload this page.
Starting with this example:
http://l-lin.github.io/angular-datatables/archives/#!/rerender
If rerender a lot of times this example and no memory leaks
** But in my version I use reloadData like this: **
And I do not know why we have an incresing use of leak memory. Garbage colector do not remove all.
How can I remove all these elements in memory?
I try this in every reload:
instanceTable.DataTable.clear();
Even we try to compile in another child object intead of this
$compile(angular.element(row).contents())($scope);
I try this in every reload
var newCreatedChildScope= $scope.$new(false); $compile(angular.element(row).contents())(newCreatedChildScope);
and then in every reload destroy the childscope this way
Are there a way using a instance.DataTable reference destroy a lot more about the table before reload data? I think this could be the solution
The text was updated successfully, but these errors were encountered: