Normally, when changing sort orders you need min and max between which to increment/decrement
Eg, if you have 10 items, and you move item 8 to position 4, then you need to only increment items 4 - 7 (each +1)
If you move item 5 to position 7, you then need to decrement items 6 and 7 by -1
Make...