From b87292d352ccfdba7e7c307d330740baf410b1cc Mon Sep 17 00:00:00 2001 From: Pratik Agrawal Date: Mon, 23 Sep 2024 15:44:00 +0530 Subject: [PATCH] Fix broken anchor in Next --- docs/docs/widgets/table.md | 34 +++++++++++++++--------------- docs/docs/widgets/table/columns.md | 2 +- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/docs/docs/widgets/table.md b/docs/docs/widgets/table.md index e17e584d16..f6d5fdde37 100644 --- a/docs/docs/widgets/table.md +++ b/docs/docs/widgets/table.md @@ -25,11 +25,11 @@ The table data can be filtered using the Filter data option on its top-left. You - **less than** - **less than or equal to** -You also have the option to **[hide the filter button](/docs/widgets/table#show-filter-button)** in the table properties. +You also have the option to **hide the filter button** in the table properties. ### Search -At the top-right corner of the table component, there is a search box that allows users to input keywords and search for rows within the table data. You can also **[show/hide the search box](/docs/widgets/table#show-search-box)** from the table from the table properties. +At the top-right corner of the table component, there is a search box that allows users to input keywords and search for rows within the table data. You can also **show/hide the search box** from the table from the table properties. :::tip You can use the `Tab` key to navigate through cells on the table. @@ -37,11 +37,11 @@ You can use the `Tab` key to navigate through cells on the table. ### Pagination -The table component supports both **[client-side pagination](/docs/widgets/table#client-side-pagination)** and **[server-side pagination](/docs/widgets/table#server-side-pagination)**. The `<<` and `>>` button skips to the first and last page respectively. The `<` and `>` button takes the user to the previous and next page respectively. You can also **[hide the pagination buttons](/docs/widgets/table#show-pagination-buttons)** in the table properties. +The table component supports both **[client-side pagination](#client-side-pagination)** and **[server-side pagination](#server-side-pagination)**. The `<<` and `>>` button skips to the first and last page respectively. The `<` and `>` button takes the user to the previous and next page respectively. You can also **hide the pagination buttons** in the table properties. ### Add New Rows -Upon clicking this button, a popup modal will show, providing users with the ability to insert new rows. Initially, the modal will contain a single row, with columns mirroring those found in the table. If users input data into this row, it will be stored within the **[`newRows` variable](/docs/widgets/table#exposed-variables)** associated with the table. Clicking on the **Discard** button will clear the data within this variable. However, if the users close the popup without any action (neither saving nor discarding), the data will persist, accompanied by a green indicator on the **Add new row** button. The table incorporates an **[Add new rows event handler](/docs//widgets/table#add-new-rows)**, which can be employed to execute queries that store the data into the data source upon clicking the **Save** button. +Upon clicking this button, a popup modal will show, providing users with the ability to insert new rows. Initially, the modal will contain a single row, with columns mirroring those found in the table. If users input data into this row, it will be stored within the **[`newRows` variable](#exposed-variables)** associated with the table. Clicking on the **Discard** button will clear the data within this variable. However, if the users close the popup without any action (neither saving nor discarding), the data will persist, accompanied by a green indicator on the **Add new row** button. The table incorporates an **[Add new rows event handler](#add-new-rows)**, which can be employed to execute queries that store the data into the data source upon clicking the **Save** button. :::info At present, it is not possible to include columns of type Image when adding a new row to the table. @@ -60,7 +60,7 @@ The name of the downloaded file will be in the following format:
`Tablename_DD-MM-YYYY_HH-mm.filetype`

Example: Customers_25-03-2022_16-10.csv -You have the option to **[hide the download button](/docs/widgets/table#show-download-button)** in the table properties. +You have the option to **[hide the download button](#show-download-button)** in the table properties. :::tip You can utilize **[Component Specific Actions](#component-specific-actions-csa)** to retrieve the table data in the mentioned formats from the event handlers across the application. @@ -68,11 +68,11 @@ You can utilize **[Component Specific Actions](#component-specific-actions-csa)* ### Hide Columns -You can choose which columns to show or hide in the table using this option. You also have the option to **[hide the column selector button](/docs/widgets/table#show-column-selector-button)** in the table properties. +You can choose which columns to show or hide in the table using this option. You also have the option to **hide the column selector button** in the table properties. ### Sorting -You can sort the table data in ascending or descending order by clicking on the column header. You can also **[disable the sorting](/docs/widgets/table#disable-sorting)** from the table properties. +You can sort the table data in ascending or descending order by clicking on the column header. You can also **disable the sorting** from the table properties. ## Table Data @@ -405,16 +405,16 @@ If the data of a cell is changed, "save changes" button will be shown at the bot ## Events -- **[Row hovered](#row-hovered)** -- **[Row clicked](#row-clicked)** -- **[Save changes](#save-changes)** -- **[Cancel changes](#cancel-changes)** -- **[Page changed](#page-changed)** -- **[Search](#search)** -- **[Sort applied](#sort-applied)** -- **[Cell value changed](#cell-value-changed)** -- **[Filter changed](#filter-changed)** -- **[Add new rows](#add-new-rows)** +- **Row hovered** +- **Row clicked** +- **Save changes** +- **Cancel changes** +- **Page changed** +- **Search** +- **Sort applied** +- **Cell value changed** +- **Filter changed** +- **Add new rows** ### Allow Selection diff --git a/docs/docs/widgets/table/columns.md b/docs/docs/widgets/table/columns.md index 347208e5f7..832ad1cde6 100644 --- a/docs/docs/widgets/table/columns.md +++ b/docs/docs/widgets/table/columns.md @@ -464,7 +464,7 @@ On hovering on a column, you can see a delete icon on the right which can be use ### Hide columns -You can choose which columns to show or hide in the Table using this option. You also have the option to **[hide the column selector button](/docs/widgets/table#show-column-selector-button)** in the Table properties. +You can choose which columns to show or hide in the Table using this option. You also have the option to **hide the column selector button** in the Table properties. ## Make all columns editable