Skip to content

Commit

Permalink
Fix of the previous changes of reorderSelectedColumns
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegKi committed Nov 5, 2016
1 parent 71217d3 commit cb2d673
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/grid.jqueryui.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@
// selectedList. I find better to insert the item AFTER the hidden
// or non-movable columns (like "rn", "subgrid" column or other)
while (iCol >= 0 && iCol < p.colModel.length &&
!p.colModel[iCol].hidden && !p.colModel[iCol].hidedlg &&
(p.colModel[iCol].hidden || p.colModel[iCol].hidedlg) &&
//inGroup[iCol] !== undefined && inGroup[iColItem] !== undefined &&
inGroup[iCol] === inGroup[iColItem]) {
iCol++;
Expand Down

0 comments on commit cb2d673

Please sign in to comment.