moves the column of the specified index to a new position
oldInd | number | the current index of column |
newInd | number | the index of the column, before which the moved column will be inserted |
Available only in PRO Edition
//put the 1st column before the 3rd column
myGrid.moveColumn(0,2);
Back to top