マウスオーバーすると、リストで選択されている項目に基づいてテーブルからデータを取得できるようにしたいフレックスの画像があります。
画像は次のとおりです。
<s:Image source="@Embed('assets/icons/question-mark_16.png')"toolTip=""/>
ArrayCollection は次のとおりです。
private var availableReports:ArrayCollection = new ArrayCollection([
{listOrder: 1, label: "Activity Summary Report", data: "actySummary", url: ""},
{listOrder: 2, label: "Activity Report", data: "actyReport", url: ""},
{listOrder: 3, label: "Performance Metrics and Data", data: "pmadReport",
url: properties.getProperty("config.links.pmd")},
{listOrder: 4, label: "More Detailed Reports...", data: "moreReports",
url: properties.getProperty("config.links.reports")}
]);
ArrayCollection を表示するリストは次のとおりです。
<s:List id="availableReportsList" width="100%"
dataProvider="{availableReports}" selectedIndex="0"
change="availableReportsList_changeHandler(event)"
height="90">
</s:List>