This commit is contained in:
2020-01-30 16:09:11 +00:00
parent 8210135dcb
commit e6739d3395
2 changed files with 7 additions and 0 deletions

View File

@@ -8,6 +8,7 @@
:server-items-length="totalRecords"
:loading="loading"
:disable-sort="true"
:show-select="showSelect"
:footer-props="{
showCurrentPage: true,
showFirstLastPage: true,
@@ -16,6 +17,7 @@
pageText: lt('PageOfPageText')
}"
:loading-text="lt('Loading')"
:no-data-text="lt('NoData')"
class="elevation-1"
></v-data-table>
<!-- <hr />
@@ -60,6 +62,10 @@ export default {
dataFilterId: {
type: Number,
default: 0
},
showSelect: {
type: Boolean,
default: false
}
},
watch: {

View File

@@ -5,6 +5,7 @@
dataListKey="TestWidgetDataList"
:caption="getCaption()"
:dataFilterId="currentDataFilterId"
:showSelect="false"
>
</gz-data-table>
</v-container>