This commit is contained in:
2020-02-25 18:52:49 +00:00
parent 720aa45d57
commit dab7b6fdad
2 changed files with 4 additions and 12 deletions

View File

@@ -42,14 +42,6 @@ CURRENT ROADMAP
CURRENT TODOs
=-=-=-=-=-=-=
TODO: BUGBUG - for some reason the unsaved filter item is not being removed anymore from the picklist and it was working before
- Can't see any changes that account for it, definitely vue is picking up the change, just not updating the picklist list of items even though the property it's bound to has been updated
- Try a regular select?
- Try a second vuetify select with a separate set of dummy items and see if updating the collection in a selection changed works for it
- Is there a way to force a re-render of the control? Maybe it doesn't know the collection changed for some reason? (Watch?)
- Try maybe reverting if all else fails to see if it goes back to working (commit 2848) then maybe pick apart
TODO: DataTable need a no results display to make it clear it hasn't just bombed or something on no results

View File

@@ -1,6 +1,5 @@
<template>
<div>
{{ pickLists.listViews }}
<v-card>
<v-card-title>
<v-select
@@ -17,7 +16,9 @@
<v-icon>fa-filter</v-icon>
</v-btn>
</v-card-title>
<div class="headline ml-3 accent--text" v-if="records.length < 1">
{{ lt("NoData") }}
</div>
<!-- WIDE TABLE VIEW -->
<template v-if="!narrowFormat">
<v-data-table
@@ -153,11 +154,10 @@
pageText: lt('PageOfPageText')
}"
:loading-text="lt('Loading')"
:no-data-text="lt('NoData')"
class="elevation-1"
>
<template v-slot:header="props">
<!-- Mimic the full width data table select all toggle -->
<!-- Mimic the full width data table select all toggle :no-data-text="lt('NoData')"-->
<div
@click="props.toggleSelectAll(!props.everyItem)"
class="pl-2 pt-2"