basic editing
This commit is contained in:
parent
692252cdb2
commit
9dc6dc1834
1 changed files with 57 additions and 13 deletions
|
@ -3,7 +3,10 @@ import { ref } from 'vue'
|
|||
|
||||
import DataTable from 'primevue/datatable'
|
||||
import Column from 'primevue/column'
|
||||
import ColumnGroup from 'primevue/columngroup'
|
||||
import Image from 'primevue/image'
|
||||
import InputText from 'primevue/inputtext'
|
||||
import Row from 'primevue/row'
|
||||
|
||||
const sampleData = ref([
|
||||
{
|
||||
|
@ -29,6 +32,7 @@ const sampleData = ref([
|
|||
},
|
||||
},
|
||||
])
|
||||
const editingRows = ref([])
|
||||
|
||||
const sampleFields = ref([
|
||||
{ field: 'name', header: 'Name', type: 'text' },
|
||||
|
@ -36,13 +40,33 @@ const sampleFields = ref([
|
|||
{ field: 'quantity', header: 'Quantity', type: 'text' },
|
||||
{ field: 'image', header: 'Image', type: 'image' },
|
||||
])
|
||||
|
||||
const onRowEditSave = (event: { newData: any, index: number }) => {
|
||||
let { newData, index } = event
|
||||
sampleData.value[index] = newData
|
||||
console.log(sampleData.value)
|
||||
}
|
||||
</script>
|
||||
|
||||
<template lang="pug">
|
||||
DataTable(:value='sampleData' tableStyle='min-width: 50rem')
|
||||
Column(v-for='col of sampleFields' :key='col.field' :field='col.field' :header='col.header')
|
||||
DataTable(
|
||||
@row-edit-save='onRowEditSave'
|
||||
v-model:editingRows='editingRows'
|
||||
:value='sampleData'
|
||||
editMode='row'
|
||||
tableStyle='min-width: 50rem'
|
||||
)
|
||||
Column(
|
||||
v-for='col of sampleFields'
|
||||
:key='col.field'
|
||||
:field='col.field'
|
||||
:header='col.header'
|
||||
style='width:5rem;'
|
||||
)
|
||||
template(
|
||||
#body='slotProps'
|
||||
)
|
||||
div(
|
||||
v-if='col.type === "image"'
|
||||
)
|
||||
Image(
|
||||
|
@ -54,11 +78,31 @@ DataTable(:value='sampleData' tableStyle='min-width: 50rem')
|
|||
span(
|
||||
v-else
|
||||
) No image
|
||||
template(
|
||||
#body='slotProps'
|
||||
div(
|
||||
v-else
|
||||
)
|
||||
span {{ slotProps.data[col.field] }}
|
||||
template(
|
||||
#editor='{ data, field }'
|
||||
)
|
||||
div(
|
||||
v-if='col.type === "image"'
|
||||
)
|
||||
span Not Implemented
|
||||
div(
|
||||
v-else
|
||||
)
|
||||
InputText(
|
||||
v-model='data[field]'
|
||||
fluid
|
||||
)
|
||||
Column(
|
||||
:rowEditor='true'
|
||||
style='width:10%;min-width:8rem;'
|
||||
bodyStyle='text-align:center;'
|
||||
)
|
||||
//- span {{ slotProps.data[col.field] }}
|
||||
//-<Column :rowEditor="true" style="width: 10%; min-width: 8rem" bodyStyle="text-align:center"></Column>
|
||||
</template>
|
||||
|
||||
<style lang="sass">
|
||||
|
|
Loading…
Add table
Reference in a new issue