我有以下代码:
<mx:Repeater id="showNames" dataProvider="{parentApplication.bfa1aStudents}">
<mx:Text text="{parentApplication.getStudentName(showNames.currentItem)}" color="#8ab534" click="nameSelected(Number(showNames.getRepeaterItem(showNames.currentIndex)));" selectable="false" mouseOver="parentApplication.switchCursor(true);" mouseOut="parentApplication.switchCursor(false);" />
</mx:Repeater>
我知道你不能在点击上使用currentItem或currentIndex ...而且这个问题是用getRepeaterItem()函数修复的,但我不确定如何使用它。 DP是一堆数字,如果重要,则表示用户ID。如果有人可以帮我解决文本中的“点击”部分,我们将不胜感激。
答案 0 :(得分:6)
尝试event.currentTarget.getRepeaterItem()
点击而不是showNames
答案 1 :(得分:2)
尝试将文本组件包装在VBox中。就像JAX所说,还有一些其他问题也可以考虑解决。
答案 2 :(得分:1)
尝试:
event.currentTarget.selectedItem.data
点击处理程序中的。