mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender.git
synced 2025-08-04 02:39:14 +02:00
feat:#104 moved eventTyp colum to new component
This commit is contained in:
@@ -33,6 +33,10 @@ const filters = ref({
|
|||||||
value: null,
|
value: null,
|
||||||
matchMode: FilterMatchMode.CONTAINS,
|
matchMode: FilterMatchMode.CONTAINS,
|
||||||
},
|
},
|
||||||
|
eventType: {
|
||||||
|
value: null,
|
||||||
|
matchMode: FilterMatchMode.CONTAINS,
|
||||||
|
},
|
||||||
prof: {
|
prof: {
|
||||||
value: null,
|
value: null,
|
||||||
matchMode: FilterMatchMode.CONTAINS,
|
matchMode: FilterMatchMode.CONTAINS,
|
||||||
@@ -146,6 +150,21 @@ function unselectModule(event: DataTableRowUnselectEvent) {
|
|||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
</Column>
|
</Column>
|
||||||
|
<Column
|
||||||
|
field="eventType"
|
||||||
|
:header="$t('additionalModules.eventType')"
|
||||||
|
:show-clear-button="false"
|
||||||
|
:show-filter-menu="false"
|
||||||
|
>
|
||||||
|
<template #filter="{ filterModel, filterCallback }">
|
||||||
|
<InputText
|
||||||
|
v-model="filterModel.value"
|
||||||
|
type="text"
|
||||||
|
class="p-column-filter max-w-10rem"
|
||||||
|
@input="filterCallback()"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
</Column>
|
||||||
<Column
|
<Column
|
||||||
field="prof"
|
field="prof"
|
||||||
:header="$t('additionalModules.professor')"
|
:header="$t('additionalModules.professor')"
|
||||||
|
Reference in New Issue
Block a user