resposive profil information column change and remove default table sideMenu prop

This commit is contained in:
Simon Gschnell
2023-12-13 14:47:40 +01:00
parent bff4fa5544
commit 5671bb340b
5 changed files with 11 additions and 11 deletions
@@ -318,8 +318,8 @@ export default {
<div v-for="(wert,bez) in personData.Allgemein" class="row justify-content-center">
<dt class="col-xl-10 col-12 " v-if="bez=='View'" ><b>{{wert}}</b></dt>
<template v-else>
<dt class="col-xl-4 col-lg-6 col-md-6 col-6 " >{{bez}}</dt>
<dd class=" col-6 ">{{wert?wert:"-"}}</dd>
<dt class="col-lg-4 col-md-6 col-6 " >{{bez}}</dt>
<dd class=" col-lg-8 col-xl-6 col-6">{{wert?wert:"-"}}</dd>
</template>
</div>
@@ -425,12 +425,12 @@ export default {
<!-- FIRST TABLE -->
<div class="col-12" >
<core-filter-cmpt title="Funktionen" ref="funktionenTable" :tabulator-options="funktionen_table_options" :tableOnly />
<core-filter-cmpt title="Funktionen" ref="funktionenTable" :tabulator-options="funktionen_table_options" tableOnly :sideMenu="false" />
</div>
<!-- SECOND TABLE -->
<div class="col-12" >
<core-filter-cmpt title="Entlehnte Betriebsmittel" ref="betriebsmittelTable" :tabulator-options="betriebsmittel_table_options" :tableOnly />
<core-filter-cmpt title="Entlehnte Betriebsmittel" ref="betriebsmittelTable" :tabulator-options="betriebsmittel_table_options" tableOnly :sideMenu="false" />
</div>
<!-- END OF THE ROW WITH THE TABLES UNDER THE PROFIL INFORMATION -->
@@ -244,7 +244,7 @@ export default {
<dt class="col-xl-10 col-12 " v-if="bez=='View'" ><b>{{wert}}</b></dt>
<template v-else>
<dt class="col-xl-4 col-lg-6 col-md-6 col-6 " >{{bez}}</dt>
<dd class=" col-6 ">{{wert?wert:"-"}}</dd>
<dd class=" col-lg-8 col-xl-6 col-6 ">{{wert?wert:"-"}}</dd>
</template>
</div>
@@ -307,7 +307,7 @@ export default {
<!-- FIRST TABLE -->
<div class="col-12" style="border: 4px solid; border-color:lightskyblue">
<core-filter-cmpt title="Funktionen" ref="funktionenTable" :tabulator-options="funktionen_table_options" :tableOnly />
<core-filter-cmpt title="Funktionen" ref="funktionenTable" :tabulator-options="funktionen_table_options" tableOnly :sideMenu="false" />
</div>
<!-- END OF THE ROW WITH THE TABLES UNDER THE PROFIL INFORMATION -->
@@ -272,7 +272,7 @@ export default {
<dt class="col-xl-10 col-12 " v-if="bez=='View'" ><b>{{wert}}</b></dt>
<template v-else>
<dt class="col-xl-4 col-lg-6 col-md-6 col-6 " >{{bez}}</dt>
<dd class=" col-6 ">{{wert?wert:"-"}}</dd>
<dd class=" col-lg-8 col-xl-6 col-6 ">{{wert?wert:"-"}}</dd>
</template>
</div>
@@ -380,12 +380,12 @@ export default {
<!-- FIRST TABLE -->
<div class="col-12" style="border: 4px solid; border-color:lightskyblue">
<core-filter-cmpt title="Entlehnte Betriebsmittel" ref="betriebsmittelTable" :tabulator-options="betriebsmittel_table_options" :tableOnly />
<core-filter-cmpt title="Entlehnte Betriebsmittel" ref="betriebsmittelTable" :tabulator-options="betriebsmittel_table_options" tableOnly :sideMenu="false" />
</div>
<!-- SECOND TABLE -->
<div class="col-12" style="border:4px solid;border-color:orange">
<core-filter-cmpt title="Zutrittsgruppen" ref="zutrittsgruppenTable" :tabulator-options="zutrittsgruppen_table_options" :tableOnly :noColumnFilter />
<core-filter-cmpt title="Zutrittsgruppen" ref="zutrittsgruppenTable" :tabulator-options="zutrittsgruppen_table_options" tableOnly :sideMenu="false" :noColumnFilter />
</div>
<!-- END OF THE ROW WITH THE TABLES UNDER THE PROFIL INFORMATION -->
@@ -170,7 +170,7 @@ export default {
<dt class="col-xl-10 col-12 " v-if="bez=='View'" ><b>{{wert}}</b></dt>
<template v-else>
<dt class="col-xl-4 col-lg-6 col-md-6 col-6 " >{{bez}}</dt>
<dd class=" col-6 ">{{wert?wert:"-"}}</dd>
<dd class=" col-lg-8 col-xl-6 col-6 ">{{wert?wert:"-"}}</dd>
</template>
</div>
+1 -1
View File
@@ -153,7 +153,7 @@ export const CoreFilterCmpt = {
return [];
return this.tabulator.getColumns().filter(col => {
let def = col.getDefinition();
return !def.frozen && def.title;
return !def.frozen && def.title && def.formatter != "responsiveCollapse";
}).map(col => col.getField());
},
fieldNames() {