changes the parameter list of the tooltip function in tabulator 5 for approveAnrechnungUebersicht and reviewAnrechungUebersicht

This commit is contained in:
SimonGschnell
2024-03-21 14:51:04 +01:00
parent 72b19987bd
commit 7dec1178e4
2 changed files with 10 additions and 2 deletions
@@ -203,7 +203,11 @@ function func_rowSelectionChanged(data, rows, tabulatorInstance){
}
// Returns tooltip
function func_tooltips(cell) {
function func_tooltips(e, cell, onRendered){
//e - mouseover event
//cell - cell component
//onRendered - onRendered callback registration function
console.log("TOOLTIP DEBUG",cell);
// Return tooltip if row is unselectable
if (true || !func_selectableCheck(cell.getRow())){
@@ -115,7 +115,11 @@ function func_rowUpdated(row){
}
// Returns tooltip
function func_tooltips(cell) {
function func_tooltips(e, cell, onRendered){
//e - mouseover event
//cell - cell component
//onRendered - onRendered callback registration functionfunction
// Return tooltip if row is unselectable
if (!func_selectableCheck(cell.getRow())){
return FHC_PhrasesLib.t("ui", "nichtSelektierbarAufgrundVon") + 'Status';