I am using a custom advanced auto-complete component. Selected items do not have a tooltip by default, but I would like to use the label as my tooltip.
The arraylist allQuestions is the dataprovider to my component.
<components:AdvancedAutoComplete id="addQuizQuestions_txt" width="800" height="300" dataProvider="{allQuestions}" labelField="questionText"
showBrowseButton="true" browserFields="questionText" allowMultipleSelection="true" allowDuplicates="true" />
allQuestions.questionText should is the path to my desired label.
I have looked into using events, such as event.currentTarget, but I dont think they exist for tooltips.
Does anyone know how to add a tooltip using the data provided to the component?