mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-20 00:12:15 +00:00
little adjustments and migrations
This commit is contained in:
@@ -6,6 +6,7 @@ $this->load->view(
|
||||
'jquery3' => true,
|
||||
'jqueryui1' => true,
|
||||
'bootstrap5' => true,
|
||||
'cis'=>true,
|
||||
'fontawesome4' => true,
|
||||
'ajaxlib' => true,
|
||||
'dialoglib' => true,
|
||||
@@ -66,7 +67,7 @@ $this->load->view(
|
||||
<div class="container-fluid">
|
||||
<!-- header -->
|
||||
<div class="row">
|
||||
<div class="col-12 my-4 page-header border-bottom">
|
||||
<div class="col-12 my-4 border-bottom">
|
||||
<h3 class="fw-normal ">
|
||||
<?php echo $this->p->t('anrechnung', 'anrechnungenGenehmigen'); ?>
|
||||
<small class="text-secondary fs-6">| <?php echo $this->p->t('global', 'detailsicht'); ?></small>
|
||||
|
||||
@@ -96,7 +96,7 @@ $this->load->view(
|
||||
<div class="container-fluid">
|
||||
<!-- header -->
|
||||
<div class="row">
|
||||
<div class="col-12 my-4 page-header border-bottom">
|
||||
<div class="col-12 my-4 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>
|
||||
|
||||
@@ -73,7 +73,7 @@ $this->load->view(
|
||||
<div class="container-fluid">
|
||||
<!-- header -->
|
||||
<div class="row">
|
||||
<div class="col-12 my-4 page-header border-bottom">
|
||||
<div class="col-12 my-4 border-bottom">
|
||||
<h3 class="fw-normal">
|
||||
<?php echo $this->p->t('anrechnung', 'anerkennungNachgewiesenerKenntnisse'); ?>
|
||||
<small class="text-secondary fs-6">| <?php echo $this->p->t('anrechnung', 'antragStellen'); ?></small>
|
||||
|
||||
@@ -572,12 +572,10 @@ var FHC_TableWidget = {
|
||||
if (data.hasOwnProperty("dataset") && $.isArray(data.dataset))
|
||||
{
|
||||
if (options == null) options = {};
|
||||
console.log("header tooltips here:",options.columnDefaults.tooltipsHeader);
|
||||
console.log("tooltips here:",options.columnDefaults.tooltip);
|
||||
options.columnDefaults={
|
||||
// set header tooltip with column title
|
||||
//! the old keyword is tooltipsHeader, the new keyword for the option is headerTooltip
|
||||
headerTooltip: (typeof options.columnDefaults.tooltipsHeader == 'undefined') ? true : options.columnDefaults.tooltipsHeader
|
||||
headerTooltip: (typeof options.columnDefaults?.tooltipsHeader == 'undefined') ? true : options.columnDefaults?.tooltipsHeader
|
||||
}
|
||||
options.columns = arrayTabulatorColumns;
|
||||
options.data = data.dataset;
|
||||
|
||||
@@ -260,7 +260,7 @@ $(function(){
|
||||
|
||||
// tableInit is called in the jquery_wrapper when the tableBuilt event was finished
|
||||
$(document).on("tableInit", function(event,tabulatorInstance) {
|
||||
console.log("instance",tabulatorInstance);
|
||||
|
||||
func_tableBuilt($("#tableWidgetTabulator"))
|
||||
|
||||
// event rowSelectionChanged now has to be attached to the tabulator after instantiation and after the tableBuilt event
|
||||
|
||||
Reference in New Issue
Block a user