我正在使用自定义的高级自动完成组件。默认情况下,选定的项目没有工具提示,但我想使用标签作为我的工具提示。
arraylist allQuestions 是我的组件的数据提供者。
<components:AdvancedAutoComplete id="addQuizQuestions_txt" width="800" height="300" dataProvider="{allQuestions}" labelField="questionText"
showBrowseButton="true" browserFields="questionText" allowMultipleSelection="true" allowDuplicates="true" />
allQuestions.questionText 应该是我想要的标签的路径。
我已经研究过使用事件,例如 event.currentTarget,但我认为它们不存在用于工具提示。
有谁知道如何使用提供给组件的数据添加工具提示?