Angular UI-Select:如何为文本溢出添加工具提示?

时间:2015-09-20 12:35:32

标签: angularjs hover tooltip overflow ui-select

我有一个ui-select-match元素,当打开元素并在一行上悬停(突出显示)时,我需要一个工具提示,以便在文本溢出被边界切断的情况下显示该行的完整内容

这似乎应该是ui-select的一个特征,但我找不到任何关于这样的东西的参考。到目前为止,我只找到了显示行内整个文本的解决方案。

谢谢!

1 个答案:

答案 0 :(得分:5)

如何将title="{{selected.name}}"放在持有ui-select-match指令的元素上。但是,工具提示无论如何都会在文本溢出时出现。

代码:

<ui-select ng-model="address.selected"
             theme="bootstrap"
             ng-disabled="disabled"
             reset-search-input="false"
             style="width: 300px;">
    <ui-select-match title="{{address.selected.formatted_address}}" placeholder="Enter an address...">{{$select.selected.formatted_address}}</ui-select-match>
    <ui-select-choices repeat="address in addresses track by $index"
             refresh="refreshAddresses($select.search)"
             refresh-delay="0">
      <div ng-bind-html="address.formatted_address | highlight: $select.search"></div>
    </ui-select-choices>
</ui-select>

参见 plnkr