|
|
|
@ -83,6 +83,7 @@ const contextMenuTarget = ref<{ row: number; col: number } | null>(null)
|
|
|
|
|
const expandedFormDlg = ref(false) |
|
|
|
|
const expandedFormRow = ref<Row>() |
|
|
|
|
const expandedFormRowState = ref<Record<string, any>>() |
|
|
|
|
const tbodyEl = ref<HTMLElement>() |
|
|
|
|
|
|
|
|
|
const { |
|
|
|
|
isLoading, |
|
|
|
@ -115,8 +116,8 @@ const { selectCell, selectBlock, selectedRange, clearRangeRows, startSelectRange
|
|
|
|
|
// scroll into the active cell |
|
|
|
|
td.scrollIntoView({ |
|
|
|
|
behavior: 'smooth', |
|
|
|
|
block: 'end', |
|
|
|
|
inline: 'end', |
|
|
|
|
block: 'nearest', |
|
|
|
|
inline: 'nearest', |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
@ -363,22 +364,6 @@ watch(
|
|
|
|
|
}, |
|
|
|
|
{ immediate: true }, |
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
const tbodyEl = ref<HTMLElement>() |
|
|
|
|
|
|
|
|
|
// watch([() => selected.row, () => selected.col], ([row, col]) => { |
|
|
|
|
// if (row !== null && col !== null) { |
|
|
|
|
// // get active cell |
|
|
|
|
// const td = tbodyEl.value?.querySelectorAll('tr')[row]?.querySelectorAll('td')[col + 1] |
|
|
|
|
// if (!td) return |
|
|
|
|
// // scroll into the active cell |
|
|
|
|
// td.scrollIntoView({ |
|
|
|
|
// behavior: 'smooth', |
|
|
|
|
// block: 'end', |
|
|
|
|
// inline: 'end', |
|
|
|
|
// }) |
|
|
|
|
// } |
|
|
|
|
// }) |
|
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
<template> |
|
|
|
|