From 67458ee0123e87d0a9d46bfaa358dd9028de3556 Mon Sep 17 00:00:00 2001 From: Wing-Kam Wong Date: Tue, 22 Nov 2022 17:08:31 +0800 Subject: [PATCH] docs: enter key to add row --- .../content/en/setup-and-usages/table-operations.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/packages/noco-docs/content/en/setup-and-usages/table-operations.md b/packages/noco-docs/content/en/setup-and-usages/table-operations.md index 4ef86ea55b..533e31180d 100644 --- a/packages/noco-docs/content/en/setup-and-usages/table-operations.md +++ b/packages/noco-docs/content/en/setup-and-usages/table-operations.md @@ -116,17 +116,24 @@ For adding new values to the table we need new rows, new rows can be added in tw - A new empty row will be created image +### Row Add (Pressing Enter Key from Previous Row) + +When you finish editing a cell and press Enter, the cell in the next row with the same column will be highlighted. + +![image](https://user-images.githubusercontent.com/35857179/203271676-bab64ca4-e0e4-4deb-9a62-609a97158911.png) + ### Row Edit You can start editing by any of the following methods - Double click on cell to edit - Click on cell and start typing (this way it will clear the previous content) - - Click on cell and press enter to start editing + - Click on cell and press enter to start editing - And it will automatically save on blur event or if inactive. ### Row Delete Right-click on anywhere in the row and then from the context menu select `Delete Row` option. + Bulk delete is also possible by selecting multiple rows by using the checkbox in first column and then `Delete Selected Rows` options from the right click context menu. image