From ec0d6ad722871851bf6e17816ac9780afd9aa3b2 Mon Sep 17 00:00:00 2001 From: Alireza Mirian Date: Sat, 14 Mar 2026 15:18:20 +0100 Subject: [PATCH] Fix what seems to be a copy-paste error The cell value access API doesn't accept column name like row API does. The example seems to be copied from the row guide. --- docs/guide/cells.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guide/cells.md b/docs/guide/cells.md index 56ef95246f..b2b7d87173 100644 --- a/docs/guide/cells.md +++ b/docs/guide/cells.md @@ -42,8 +42,8 @@ The recommended way to access data values from a cell is to use either the `cell ```js // Access data from any of the columns -const firstName = cell.getValue('firstName') // read the cell value from the firstName column -const renderedLastName = cell.renderValue('lastName') // render the value from the lastName column +const value = cell.getValue() // read the cell value +const rendered = cell.renderValue() // render the value ``` #### Access Other Row Data from Any Cell