added overview for editing Bismeldestichtage

This commit is contained in:
KarpAlex
2023-06-07 19:25:23 +02:00
parent df64ad30eb
commit f95c5ec7cf
6 changed files with 210 additions and 0 deletions
@@ -0,0 +1,43 @@
/**
* Copyright (C) 2022 fhcomplete.org
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import {BismeldestichtagTabulatorOptions} from './TabulatorSetup.js';
import {BismeldestichtagTabulatorEventHandlers} from './TabulatorSetup.js';
import {CoreFilterCmpt} from '../../components/filter/Filter.js';
import {CoreNavigationCmpt} from '../../components/navigation/Navigation.js';
const bismeldestichtagApp = Vue.createApp({
data: function() {
return {
appSideMenuEntries: {},
bismeldestichtagTabulatorOptions: BismeldestichtagTabulatorOptions,
bismeldestichtagTabulatorEventHandlers: BismeldestichtagTabulatorEventHandlers
};
},
components: {
CoreNavigationCmpt,
CoreFilterCmpt
},
methods: {
newSideMenuEntryHandler: function(payload) {
this.appSideMenuEntries = payload;
}
}
});
bismeldestichtagApp.mount('#main');
@@ -0,0 +1,46 @@
/**
* Copyright (C) 2022 fhcomplete.org
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
/**
*
*/
export const BismeldestichtagTabulatorOptions = {
height: 700,
layout: 'fitColumns',
columns: [
{title: 'ID', field: 'Id', headerFilter: true},
{title: 'Meldestichtag', field: 'Meldestichtag', headerFilter: true},
{title: 'Studiensemester', field: 'Studiensemester', headerFilter: true}
],
rowFormatter: function(row) {
let data = row.getData(); // get data for this row
}
};
/**
*
*/
export const BismeldestichtagTabulatorEventHandlers = [
{
event: "rowClick",
handler: function(e, row) {
alert(row.getData().Data);
}
}
];