Skip to content

Commit

Permalink
Merge pull request #122 from MrYamous/action-column-not-exported-default
Browse files Browse the repository at this point in the history
Document action column is not exported by default
  • Loading branch information
luanfreitasdev authored Nov 5, 2024
2 parents e97f90e + 9d1a024 commit a859dd0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/table-features/columns.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ The Action Column is a dedicated column to display Row Actions such as [Buttons]
To include an Action Column, just add a call to `Column::action()` in your Component's `columns()` method.

Typically, the Action Column is the last column in your Table, however may add this column as many times as you want and at any desired position.
If you deal with export, by default Action Column are not included but the method [`Column::visibleInExport()`](/table-component/component-columns.html#visibleinexport) can be used if you need them in your exported file.

Example:

Expand Down
2 changes: 2 additions & 0 deletions docs/table-features/exporting-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ Sometimes, it may be necessary to omit certain Columns when exporting data but s

To implement this scenario, you should use the method [`Column::visibleInExport()`](/table-component/component-columns.html#visibleinexport) to control whether the column will be included in the export file and the method [`Column::hidden()`](/table-component/component-columns.html#hidden) to hide the column in the grid.

By default, [Action Column](/table-features/columns.html#action-column) are not included in export, the method [`Column::visibleInExport()`](/table-component/component-columns.html#visibleinexport) will allow you to add them if you need.

Using these two methods, you can create a column with [formatted data](/table-component/data-source-fields.html#formatting-data-examples), displayed in the grid but hidden in export, and a column with raw data hidden in the grid but included in the exported file.

Example:
Expand Down

0 comments on commit a859dd0

Please sign in to comment.