You could first sort the array, and obtain :
`sortedList = [A,B,C,D,E,F,G,H,I,...]`
and from here compute a list which stores the items in the flow order for your display :
var colSortedList = [];
var gap = sortedList.length / colnumber;
var i, j;
for (i=0; i<colnumber; i++){
for(j=0; j+i < sortedList.length; j+=gap){
colSortedist.push( sortedList[j+i] );
}
}
(this is an untested patch, one or two things need adjusting)
Now you can create your html items from colSortedList
[EDIT]
If I understand correctly, you have your initial <ul id="source"> displayed, you need to build a new html node <ul id="destination">, and call $('#source').quicksand( $('#destination') );
If you want to "build a new html node" which sorts the items per column :
- use the above algorithm to have your items sorted in the correct order
- insert your
<li> items following the order in colSortedList