标签: flex sorting flex3
我需要能够对组合框的项目进行排序,以便它们按字母顺序排列。我该怎么做?
答案 0 :(得分:2)
为ComboBox排序dataProvider对象。
排序方法因dataProvider数据结构而异。
对于数组,您可以使用sort()或sortOn()方法。 对于ArrayCollection,请查看Sort和SortField类。我找到了示例here。
答案 1 :(得分:1)
对您用作数据提供者的数组或ArrayCollection进行排序:
http://blog.flexexamples.com/2007/08/05/sorting-an-arraycollection-using-the-sortfield-and-sort-classes/
或
http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/Array.html#sort()