Added tooltip for unselectable Anrechnungen

Signed-off-by: cris-technikum <[email protected]>
This commit is contained in:
Cris
2021-01-25 18:18:13 +01:00
committed by cris-technikum
parent 1b00ae78b4
commit aefd0842db
7 changed files with 46 additions and 2 deletions
@@ -68,6 +68,14 @@ function func_rowUpdated(row){
row.getElement().style["pointerEvents"] = "none";
}
// Returns tooltip
function func_tooltips(cell) {
// Return tooltip if row is unselectable
if (!func_selectableCheck(cell.getRow())){
return FHC_PhrasesLib.t("ui", "nichtSelektierbarAufgrundVon") + 'Status';
}
}
// Formats empfehlung_anrechnung
var format_empfehlung_anrechnung = function(cell, formatterParams){
return (cell.getValue() == null)
@@ -66,6 +66,14 @@ function func_rowUpdated(row){
row.getElement().style["pointerEvents"] = "none";
}
// Returns tooltip
function func_tooltips(cell) {
// Return tooltip if row is unselectable
if (!func_selectableCheck(cell.getRow())){
return FHC_PhrasesLib.t("ui", "nichtSelektierbarAufgrundVon") + 'Status';
}
}
// Formats empfehlung_anrechnung
var format_empfehlung_anrechnung = function(cell, formatterParams){
return (cell.getValue() == null)