If we use jqx-instance together with jqx-treegrid, there are most of methods missing in the instance object:
html:
<jqx-tree-grid jqx-settings="treeGridSettings" jqx-create="treeGridSettings" jqx-instance="treeGrid"></jqx-tree-grid>
js controller:
...
$scope.treeGrid = {};
$scope.treeGridSettings = {
...settings of treegrid...
};
Afterwards, $scope.treeGrid
is equipped with some methods of jqx-tree-grid, but not all!! E.g. I cannot call $scope.treeGrid.clearSelection()
even though this should work (as we are used to e.g. jqx-grid…). Of course, I can call `$scope.treeGridSettings.apply(‘clearSelection’)…
Thanks fixing this!
– badera