ngtable でツールチップを取得しようとしており、次のコードを使用しています:
http://embed.plnkr.co/v6bqqe/index.html
私の ngtable は次のようになります。
<table ng-table="tableParams" class="table">
<tr ng-repeat="user in $data">
<td data-title="'Name'">{{user.name}}</td>
<td data-title="'Age'">{{user.age}}</td>
<td data-title="'Comments'">
<div my-qtip qtip-title="{{user.name}}" qtip-content="{{user.comment}}">
hover here
</div>
</td>
</tr>
</table>
そのため、usercomment プロパティをツールチップとして表示しようとしています。質問は、コメント列にカーソルを合わせたときにこれを表に表示する方法ですか?
plunkr も参照してください: http://plnkr.co/edit/8zNSsyzbu2Xbda2NIbnK?p=info