昇順、降順でソートするためのコンパレータを追加しました。
listHeader.setSortAscending(new MyComparator(true)); //True for asc
listHeader.setSortDescending(new MyComparator(false)); //False for asc
私がこれをするとき。Events.postEvent(Events.ON_SORT,listHeader,null);
リストボックスを昇順で並べ替えますが、上記の呼び出し時に降順で並べ替えたいのですがEvents.postEvent();
、属性を設定していませんか?