|
|
|
@ -1400,14 +1400,14 @@ eventBus.on(async (event, payload) => {
|
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
watch(activeCell, (activeCell) => { |
|
|
|
|
const row = activeCell.row !== null ? cachedRows.value.get(activeCell.row)?.row : undefined; |
|
|
|
|
const col = (row && activeCell.col !== null) ? fields.value[activeCell.col] : undefined; |
|
|
|
|
const val = (row && col) ? row[col.title as string] : undefined; |
|
|
|
|
const row = activeCell.row !== null ? cachedRows.value.get(activeCell.row)?.row : undefined |
|
|
|
|
const col = row && activeCell.col !== null ? fields.value[activeCell.col] : undefined |
|
|
|
|
const val = row && col ? row[col.title as string] : undefined |
|
|
|
|
|
|
|
|
|
const rowId = extractPkFromRow(row!, meta.value?.columns as ColumnType[]) |
|
|
|
|
const viewId = view.value?.id; |
|
|
|
|
const viewId = view.value?.id |
|
|
|
|
|
|
|
|
|
eventBus.emit(SmartsheetStoreEvents.CELL_SELECTED, { rowId, colId: col?.id, val, viewId }); |
|
|
|
|
eventBus.emit(SmartsheetStoreEvents.CELL_SELECTED, { rowId, colId: col?.id, val, viewId }) |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
const reloadViewDataHookHandler = async () => { |
|
|
|
|