我有一些HTML当前正在使用ng-options
指令填充选择框。我们的问题是ng-options不支持使用工具提示。为了解决这个问题,我试图编写一个自定义指令,但是对于AngularJS和TypeScript我还是很陌生,所以我不确定从哪里去哪里。
这是到目前为止的相关代码:
<select grid-column-tooltip class="select-box" id="availableColumn" size="5"
ng-options="column as column.localizedTitle for column in vm.availableColumns | filter: vm.environmentMatches track by column.field"
ng-model="vm.availableColumnElement"
ng-dblclick="vm.moveToSelectedColumns()">
<option value="" ng-if="false"></option>
</select>
column
对象上有一个名为environmentLabel
的字段,我想在悬停时显示为工具提示。
module psfc {
class GirdColumnTooltipDirective implements ng.IDirective {
restrict = 'A';
template = '<div class="grid-column-tooltip">{{column.environmentLabel}}</div>';
constructor(
) { }
static directive = (): ng.IDirectiveFactory => {
return () => new GirdColumnTooltipDirective();
}
}
angular
.module('psfc')
.directive('gridColumnTooltip', GirdColumnTooltipDirective.directive());
}
这显然是很不完整的,因为我不确定如何在打字稿中实现我想要的东西。我也不确定是否将模板制作成悬停出现的div
,还是找到一种将title
属性添加到相关option
元素的方法。
此外,根据解决方案的不同,我现在不担心CSS。我以后可以解决任何样式问题。
答案 0 :(得分:2)
为简单起见,我们最终只是将ng-options
内的ng-repeat
更改为使用select
。比编写自定义指令要简单得多。
<select class="select-box" id="availableColumn" size="5"
ng-dblclick="vm.moveToSelectedColumns()">
<option ng-repeat="column in vm.availableColumns | filter: vm.environmentMatches track by column.field"
value="column.field"
ng-click="vm.availableColumnElement = column"
title="{{column.localizedTitle}}">
{{column.localizedTitle}}
</option>
</select>