mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-25 16:44:28 +00:00
adds jquery adjustments
This commit is contained in:
@@ -96,7 +96,7 @@ $this->load->view(
|
||||
<div class="container-fluid">
|
||||
<!-- header -->
|
||||
<div class="row">
|
||||
<div class="col-12 mt-5 mb-3 pb-2 border-bottom">
|
||||
<div class="col-12 mt-4 mb-2 page-header border-bottom">
|
||||
<h3 class="fw-normal ">
|
||||
<?php echo $this->p->t('anrechnung', 'anrechnungenGenehmigen'); ?>
|
||||
<small class="text-secondary fs-6">| <?php echo ucfirst($this->p->t('global', 'uebersicht')); ?></small>
|
||||
|
||||
@@ -214,10 +214,7 @@ $filterWidgetArray = array(
|
||||
selectable: true, // allow row selection
|
||||
selectableRangeMode: "click", // allow range selection using shift end click on end of range
|
||||
selectablePersistence:false, // deselect previously selected rows when table is filtered, sorted or paginated
|
||||
tableBuilt: function(){
|
||||
|
||||
func_tableBuilt(this);
|
||||
},
|
||||
|
||||
tableWidgetFooter: {
|
||||
selectButtons: false
|
||||
},
|
||||
@@ -227,10 +224,12 @@ $filterWidgetArray = array(
|
||||
rowFormatter:function(row){
|
||||
func_rowFormatter(row,this);
|
||||
},
|
||||
rowSelectionChanged:function(data, rows){
|
||||
func_rowSelectionChanged(data, rows);
|
||||
},
|
||||
tooltips: function(cell){
|
||||
columnDefaults:{
|
||||
tooltip:true,
|
||||
}
|
||||
//! not working
|
||||
columnDefaults:{
|
||||
tooltip:function(e, cell, onRendered){
|
||||
return func_tooltips(cell);
|
||||
}
|
||||
}', // tabulator properties
|
||||
|
||||
Reference in New Issue
Block a user