Multidimensional array

Hi, :goatee: i have some problem witha multidimensional array.
Now explain:

I’ve create a structure like a Table, the data are take from a bidimensional array. :te: I want include some button to order by a column for example order by code, name etc. :huh:

For ordering array i use sortOn() command but the result is anomalous, some time there is a change between 2 column and other time the array is the same in the same order. :red:

Someone can help me please. :slight_smile:

P.S. Sorry for my english, i hope to be right.

Nice

could you give us the code that you are using…

Creation & data inseriment:

_level0.dverificatori = [[], [], [], [], [], []];
for (k=0; k<ida.length-1; k++) {
_level0.dverificatori[0][k] = ida[k];
_level0.dverificatori[1][k] = nom[k];
_level0.dverificatori[2][k] = des[k];
_level0.dverificatori[3][k] = loc[k];
_level0.dverificatori[4][k] = pro[k];
_level0.dverificatori[5][k] = pai[k];
}

sorting code:

_level0.dazienda.sortOn(_root.ordine)

i hope is necessary