From ef3bd5bbe842567d0a602611e63d7d43188c0d38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20R=C3=B3=C5=BCbicki?= Date: Thu, 2 Sep 2021 16:26:42 +0200 Subject: [PATCH] Add rowKey in selectionRenderer docs --- docs/row-selection.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/row-selection.md b/docs/row-selection.md index dce1f9f07..43cb0b6f4 100644 --- a/docs/row-selection.md +++ b/docs/row-selection.md @@ -229,7 +229,7 @@ Provide a callback function which allow you to custom the checkbox/radio box. Th ```js const selectRow = { mode: 'checkbox', - selectionRenderer: ({ mode, checked, disabled, rowIndex }) => ( + selectionRenderer: ({ mode, checked, disabled, rowIndex, rowKey }) => ( // .... ) };