Can someone point me in the right direction either with help om this script or a previous post on how to store user inputs from a Combo Box?
I have read various information on Arrays and I may be entering the information into the wrong script section for the field. Here is what I have tried to create from other examples: (where "arrange" is the sort function)
var list = new Array();
var g = this.getField("signer");
for (var i = 0; i < g.numItems; i++)
list[i] = [g.getItemAt(i,false), g.getItemAt(i)];
list.sort(arrange);
g.clearItems();
g.setItems(list);
Any help is appreciated.
Thanks.
Where are the parameters for the arrange function?
George Kaiser