Nur Details von einem Patienten #19
This commit is contained in:
parent
7382f40ec7
commit
43431789b7
5 changed files with 45 additions and 10 deletions
|
@ -16,7 +16,7 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
$(document).ready(function () {
|
$(document).ready(function () {
|
||||||
$('#t__aviary_all').DataTable({
|
let table = $('#t__aviary_all').DataTable({
|
||||||
language: {
|
language: {
|
||||||
url: 'https://cdn.datatables.net/plug-ins/1.11.3/i18n/de_de.json',
|
url: 'https://cdn.datatables.net/plug-ins/1.11.3/i18n/de_de.json',
|
||||||
},
|
},
|
||||||
|
@ -26,7 +26,14 @@
|
||||||
columnDefs: [
|
columnDefs: [
|
||||||
{ responsivePriority: 1, targets: 0 },
|
{ responsivePriority: 1, targets: 0 },
|
||||||
]
|
]
|
||||||
})
|
});
|
||||||
|
table.on( 'responsive-display', function ( e, datatable, row, showHide, update ) {
|
||||||
|
table.rows().every( function () {
|
||||||
|
if (showHide && row.index() !== this.index() && this.child.isShown()) {
|
||||||
|
$('td', this.node()).eq(0).click();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
$(document).ready(function () {
|
$(document).ready(function () {
|
||||||
$('#t__bird_inactive').DataTable({
|
let table = $('#t__bird_all').DataTable({
|
||||||
language: {
|
language: {
|
||||||
url: 'https://cdn.datatables.net/plug-ins/1.11.3/i18n/de_de.json',
|
url: 'https://cdn.datatables.net/plug-ins/1.11.3/i18n/de_de.json',
|
||||||
},
|
},
|
||||||
|
@ -26,7 +26,14 @@
|
||||||
columnDefs: [
|
columnDefs: [
|
||||||
{ responsivePriority: 1, targets: 0 },
|
{ responsivePriority: 1, targets: 0 },
|
||||||
]
|
]
|
||||||
})
|
});
|
||||||
|
table.on( 'responsive-display', function ( e, datatable, row, showHide, update ) {
|
||||||
|
table.rows().every( function () {
|
||||||
|
if (showHide && row.index() !== this.index() && this.child.isShown()) {
|
||||||
|
$('td', this.node()).eq(0).click();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
$(document).ready(function () {
|
$(document).ready(function () {
|
||||||
$('#t__bird_all').DataTable({
|
let table = $('#t__bird_all').DataTable({
|
||||||
language: {
|
language: {
|
||||||
url: 'https://cdn.datatables.net/plug-ins/1.11.3/i18n/de_de.json',
|
url: 'https://cdn.datatables.net/plug-ins/1.11.3/i18n/de_de.json',
|
||||||
},
|
},
|
||||||
|
@ -26,7 +26,14 @@
|
||||||
columnDefs: [
|
columnDefs: [
|
||||||
{ responsivePriority: 1, targets: 0 },
|
{ responsivePriority: 1, targets: 0 },
|
||||||
]
|
]
|
||||||
})
|
});
|
||||||
|
table.on( 'responsive-display', function ( e, datatable, row, showHide, update ) {
|
||||||
|
table.rows().every( function () {
|
||||||
|
if (showHide && row.index() !== this.index() && this.child.isShown()) {
|
||||||
|
$('td', this.node()).eq(0).click();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
<!-- Configure the DataTable. -->
|
<!-- Configure the DataTable. -->
|
||||||
<script>
|
<script>
|
||||||
$(document).ready(function () {
|
$(document).ready(function () {
|
||||||
$('#t__costs_all').DataTable({
|
let table = $('#t__costs_all').DataTable({
|
||||||
language: {
|
language: {
|
||||||
url: 'https://cdn.datatables.net/plug-ins/1.11.3/i18n/de_de.json',
|
url: 'https://cdn.datatables.net/plug-ins/1.11.3/i18n/de_de.json',
|
||||||
},
|
},
|
||||||
|
@ -30,7 +30,14 @@
|
||||||
columnDefs: [
|
columnDefs: [
|
||||||
{ responsivePriority: 1, targets: 0 },
|
{ responsivePriority: 1, targets: 0 },
|
||||||
]
|
]
|
||||||
})
|
});
|
||||||
|
table.on( 'responsive-display', function ( e, datatable, row, showHide, update ) {
|
||||||
|
table.rows().every( function () {
|
||||||
|
if (showHide && row.index() !== this.index() && this.child.isShown()) {
|
||||||
|
$('td', this.node()).eq(0).click();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
{% endblock header %}
|
{% endblock header %}
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
$(document).ready(function () {
|
$(document).ready(function () {
|
||||||
$('#t__rescuer_all').DataTable({
|
let table = $('#t__rescuer_all').DataTable({
|
||||||
language: {
|
language: {
|
||||||
url: 'https://cdn.datatables.net/plug-ins/1.11.3/i18n/de_de.json',
|
url: 'https://cdn.datatables.net/plug-ins/1.11.3/i18n/de_de.json',
|
||||||
},
|
},
|
||||||
|
@ -26,7 +26,14 @@
|
||||||
columnDefs: [
|
columnDefs: [
|
||||||
{ responsivePriority: 1, targets: 0 },
|
{ responsivePriority: 1, targets: 0 },
|
||||||
]
|
]
|
||||||
})
|
});
|
||||||
|
table.on( 'responsive-display', function ( e, datatable, row, showHide, update ) {
|
||||||
|
table.rows().every( function () {
|
||||||
|
if (showHide && row.index() !== this.index() && this.child.isShown()) {
|
||||||
|
$('td', this.node()).eq(0).click();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue