add clone button
This commit is contained in:
parent
cb84ace3cf
commit
ba64bd62b4
1 changed files with 14 additions and 1 deletions
|
@ -101,6 +101,11 @@ const onEditRow = (event: Event, slotProps: EditingRow) => {
|
||||||
editingRowData.value = slotProps
|
editingRowData.value = slotProps
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const onCloneRow = (event: Event, slotProps: EditingRow) => {
|
||||||
|
event.preventDefault()
|
||||||
|
onAddRow(undefined, slotProps.data)
|
||||||
|
}
|
||||||
|
|
||||||
const onRemoveImage = (event: Event, slotProps: EditingRow) => {
|
const onRemoveImage = (event: Event, slotProps: EditingRow) => {
|
||||||
event.preventDefault()
|
event.preventDefault()
|
||||||
const row = { ...model.value[slotProps.index] } as any
|
const row = { ...model.value[slotProps.index] } as any
|
||||||
|
@ -285,7 +290,7 @@ DataTable.data-editor(
|
||||||
Column(
|
Column(
|
||||||
rowEditor
|
rowEditor
|
||||||
header='Actions'
|
header='Actions'
|
||||||
style='width:10%;min-width:8rem;'
|
style='width:10%;min-width:14rem;'
|
||||||
bodyStyle='text-align:center;'
|
bodyStyle='text-align:center;'
|
||||||
)
|
)
|
||||||
template(
|
template(
|
||||||
|
@ -299,6 +304,14 @@ DataTable.data-editor(
|
||||||
variant='text'
|
variant='text'
|
||||||
@click='slotProps.editorInitCallback'
|
@click='slotProps.editorInitCallback'
|
||||||
)
|
)
|
||||||
|
Button.edit(
|
||||||
|
icon='pi pi-clone'
|
||||||
|
aria-label='Row Clone'
|
||||||
|
rounded
|
||||||
|
severity='secondary'
|
||||||
|
variant='text'
|
||||||
|
@click='(e) => onCloneRow(e, slotProps)'
|
||||||
|
)
|
||||||
Button.edit(
|
Button.edit(
|
||||||
icon='pi pi-pen-to-square'
|
icon='pi pi-pen-to-square'
|
||||||
aria-label='Row Edit Details'
|
aria-label='Row Edit Details'
|
||||||
|
|
Loading…
Add table
Reference in a new issue