mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-13 01:59:28 +00:00
changes the parameter list of the tooltip function in tabulator 5 for approveAnrechnungUebersicht and reviewAnrechungUebersicht
This commit is contained in:
@@ -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';
|
||||
|
||||
Reference in New Issue
Block a user