Hello,
I'm unable to get the levelSortDirections from a pivotView.
Since I'm using a pivotView instead of a simple pivotGrid I used the following line:
$('#pivotView').igPivotView('pivotGrid').option('levelSortDirections')
This always returns an array consisting of one item. This item has the fields levelUniqueName and sortDirection but both have a value of NULL.
Is there any special way to get these sortingDirections when using a pivotView (and not just pivotGrid)?
BR
Hello Daniel,
Try with the following API igPivotGrid.methods.appliedLevelSortDirections. Here is an example:
$("#pivotView").igPivotView("pivotGrid").appliedLevelSortDirections();
Best regards,Martin PavlovInfragistics, Inc.
Thank you, works flawless!