Copy formatted value when copying values from cells
This commit is contained in:
parent
301bedb5f4
commit
d37fedaae7
|
@ -76,7 +76,7 @@
|
||||||
onKeyDown: (...params) => api?.onKeyDown?.(...params),
|
onKeyDown: (...params) => api?.onKeyDown?.(...params),
|
||||||
isReadonly: () => readonly,
|
isReadonly: () => readonly,
|
||||||
getType: () => column.schema.type,
|
getType: () => column.schema.type,
|
||||||
getValue: () => row[column.name],
|
getValue: () => value,
|
||||||
setValue: (value, options = { apply: true }) => {
|
setValue: (value, options = { apply: true }) => {
|
||||||
validation.actions.setError(cellId, null)
|
validation.actions.setError(cellId, null)
|
||||||
updateValue({
|
updateValue({
|
||||||
|
|
Loading…
Reference in New Issue