Hi Peter,
I downloaded the v3.6.0 version and the “destroy” error disappeared when I leave the route containing the charts.
But the upgrade has side effects on my jqx-grids.
I now have infinite digests loops detected by angular when the jqx-grid appears:
“Error: error:infdig
Infinite $digest Loop”
I use the jqx-grid with jqx-create and jqx-settings attributes:
<jqx-grid jqx-create=”createGrid” jqx-settings=”gridSettings”></jqx-grid>
And I use this code to update my grid :
var source = {
datatype: ‘json’,
localdata: $scope.predefinedPaths,
id: ‘ID’,
datafields: [
{ name: ‘ID’, type: ‘integer’},
{ name: ‘Name’, type: ‘string’},
{ name: ‘Path’, type: ‘string’},
]
};
var dataAdapter = new $.jqx.dataAdapter(source, { async: false, autoBind: true});
$scope.gridSettings.source = dataAdapter;
I use the last 1.2.27 version of angular.
My problem may be the same than in the post:
http://www.jqwidgets.com/community/topic/jqx-grid-angular-integration-problems/