Add title attributes to egGrid cells so content is displayed in full
when mousing over the cell.
This only covers text cells, not those that render HTML in the cell
(e.g. links).
Signed-off-by: Bill Erickson <berickxx@gmail.com>
<!-- otherwise, simply display the item value, which may
pass through datatype-specific filtering. -->
- <span ng-if="!col.template" style="padding-left:5px; padding-right:10px;">
+ <span ng-if="!col.template"
+ title="{{itemFieldValue(item, col) | egGridValueFilter:col:item}}"
+ style="padding-left:5px; padding-right:10px;">
{{itemFieldValue(item, col) | egGridValueFilter:col:item}}
</span>
</div>