File tree 4 files changed +13
-5
lines changed
4 files changed +13
-5
lines changed Original file line number Diff line number Diff line change 833
833
}
834
834
}
835
835
836
+ function getAppendedColumnHeaderText ( col ) {
837
+ return ', ' + i18nService . getSafeText ( 'headerCell.aria.column' ) + ' ' + col . displayName ;
838
+ }
839
+
836
840
function getCellDisplayValue ( currentRowColumn ) {
837
841
if ( currentRowColumn . col . field === 'selectionRowHeaderCol' ) {
838
842
// This is the case when the 'selection' feature is used in the grid and the user has moved
841
845
// is or is not currently selected.
842
846
return currentRowColumn . row . isSelected ? i18nService . getSafeText ( 'search.aria.selected' ) : i18nService . getSafeText ( 'search.aria.notSelected' ) ;
843
847
} else {
844
- return grid . getCellDisplayValue ( currentRowColumn . row , currentSelection [ i ] . col ) ;
848
+ return grid . getCellDisplayValue ( currentRowColumn . row , currentRowColumn . col ) ;
845
849
}
846
850
}
847
851
848
852
var values = [ ] ;
849
853
var currentSelection = grid . api . cellNav . getCurrentSelection ( ) ;
850
854
for ( var i = 0 ; i < currentSelection . length ; i ++ ) {
851
- values . push ( getCellDisplayValue ( currentSelection [ i ] ) ) ;
855
+ var cellDisplayValue = getCellDisplayValue ( currentSelection [ i ] ) + getAppendedColumnHeaderText ( currentSelection [ i ] . col ) ;
856
+ values . push ( cellDisplayValue ) ;
852
857
}
853
858
var cellText = values . toString ( ) ;
854
859
setNotifyText ( cellText ) ;
Original file line number Diff line number Diff line change 9
9
aria : {
10
10
defaultFilterLabel : 'Filter für Spalte' ,
11
11
removeFilter : 'Filter löschen' ,
12
- columnMenuButtonLabel : 'Spaltenmenü'
12
+ columnMenuButtonLabel : 'Spaltenmenü' ,
13
+ column : 'Spalte'
13
14
} ,
14
15
priority : 'Priorität:' ,
15
16
filterLabel : "Filter für Spalte: "
Original file line number Diff line number Diff line change 9
9
aria : {
10
10
defaultFilterLabel : 'Filter for column' ,
11
11
removeFilter : 'Remove Filter' ,
12
- columnMenuButtonLabel : 'Column Menu'
12
+ columnMenuButtonLabel : 'Column Menu' ,
13
+ column : 'Column'
13
14
} ,
14
15
priority : 'Priority:' ,
15
16
filterLabel : "Filter for column: "
Original file line number Diff line number Diff line change 9
9
aria : {
10
10
defaultFilterLabel : 'Filtr dla kolumny' ,
11
11
removeFilter : 'Usuń filtr' ,
12
- columnMenuButtonLabel : 'Menu kolumny'
12
+ columnMenuButtonLabel : 'Menu kolumny' ,
13
+ column : 'Kolumna'
13
14
} ,
14
15
priority : 'Prioritet:' ,
15
16
filterLabel : "Filtr dla kolumny: "
You can’t perform that action at this time.
0 commit comments