I am using SmartClient_v111p_2017-09-16_LGPL with IE11.
I have a TreeGrid with a hidden column (DisplayOrder). I can insert a node into the Tree and set the value of the attribute, DisplayOrder. I am then making the call to sort the TreeGrig:
TreeGrid.sort('DisplayOrder', 'ascending');
I tried placing markForRedraw() before and after the sort, but the sort is not reflected.
Any ideas on what is going wrong with the sort?
I think I read that the sort of a tree would sort sibling nodes and keep the overall schema of the tree. Is this true?
I have a TreeGrid with a hidden column (DisplayOrder). I can insert a node into the Tree and set the value of the attribute, DisplayOrder. I am then making the call to sort the TreeGrig:
TreeGrid.sort('DisplayOrder', 'ascending');
I tried placing markForRedraw() before and after the sort, but the sort is not reflected.
Any ideas on what is going wrong with the sort?
I think I read that the sort of a tree would sort sibling nodes and keep the overall schema of the tree. Is this true?
Comment