You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This interface supports full update and incremental update. Full update will relayout and render the entire table, incremental update will only update the configuration items, not relayout and render the entire table.
expect(formulaManager.getCellValue({sheet: 'SummarySheet',row: 1,col: 1}).value).toBe(100);// Explicit reference should be unchanged
212
-
expect(formulaManager.getCellValue({sheet: 'SummarySheet',row: 2,col: 1}).value).toBe(1000);// Should still be 1000 (implicit reference uses DataSheet2 which was active when formula was created)
0 commit comments