File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,8 @@ All notable changes for each version of this project will be documented in this
1717 - ** Behavioral Change** - Pinning columns is no longer automatically prevented when the pinning area would exceed the size of the grid.
1818
1919## 8.2.4
20+ - ` IgxGrid ` , ` IgxTreeGrid ` , ` IgxHierarchicalGrid `
21+ - The header text of the columns and the column groups now has the ` title ` attribute set to it in order to expose a native browser tooltip.
2022
2123### RTL Support
2224Most of the components in the framework now have full right-to-left (RTL) support via the newly included RTL themes.
Original file line number Diff line number Diff line change 2020 < span *ngIf ="grid.hasMovableColumns " class ="igx-grid__th-drop-indicator-right "> </ span >
2121</ ng-container >
2222
23- < ng-template #defaultColumn > {{column.header}}</ ng-template >
23+ < ng-template #defaultColumn >
24+ < span [attr.title] ="column.header "> {{column.header}}</ span >
25+ </ ng-template >
2426
2527< ng-container *ngIf ="!grid.hasColumnLayouts && column.columnGroup ">
2628 < span *ngIf ="grid.hasMovableColumns " class ="igx-grid__th-drop-indicator-left "> </ span >
Original file line number Diff line number Diff line change 11< ng-template #defaultColumn >
2- {{ column.header || column.field }}
2+ < span [attr.title] =" column.header || column.field " > {{ column.header || column.field }}</ span >
33</ ng-template >
44
55< span class ="igx-grid__th-title ">
You can’t perform that action at this time.
0 commit comments