次の json コレクションを使用します。
$scope.searchscope = [
{ id: 0, name: "Base", description: "Search only the specified base object. The value is equal to 0." },
{ id: 1, name: "OneLevel", description: "Search the child objects of the base object, but not the base object itself.The value is equal to 1" },
{ id: 2, name: "Subtree", description: "Search the base object and all child objects. The value is equal to 2" }
];
そして次のマークアップ
<select data-ng-model="mySelections[0].SearchFilterMembershipsScope" data-ng-options="i.id as i.name for i in searchscope" data-ng-required="true"></select>
3 つのオプションで選択を正常に生成しました。現在選択されているアイテムの「説明」のツールチップを表示する最良の方法は何ですか? また、ユーザーがドロップダウンをナビゲートしている間、つまり選択を行っている間にこれを行うことは可能でしょうか?詩は実際に選択を行っていましたか?