Skip to content

Commit 675290a

Browse files
committed
[update] table events info corrected
1 parent 8b5cf59 commit 675290a

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

docs/api/table/close-row.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@ The callback of the action takes an object with the following parameters:
3232
If `id` is set to 0 and `nested` to **true**, all rows in the table will be collapsed
3333
:::
3434

35-
Returning **false** from the event handler will prevent collapsing rows.
36-
3735
### Example
3836

3937
The snippet below demonstrates how to open/close all rows with a button click:

docs/api/table/export.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,5 +106,5 @@ In this snippet you can see how to export data:
106106
**Related articles**:
107107
- [`getTable`](/api/methods/gettable-method)
108108
- [Exporting data](/guides/exporting-data)
109-
- [Date formatting](/guides/localization#date-formatting)
109+
- [Applying formats to fields](/guides/working-with-data/#applying-formats-to-fields)
110110

docs/api/table/filter-rows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The callback of the action takes an object with the following parameters:
2828

2929
### Example
3030

31-
The snippet below demonstrates how to filter data by input value:
31+
The snippet below demonstrates how to filter aggregated (visible) data in the table body by input value:
3232

3333
<iframe src="https://snippet.dhtmlx.com/s7tc9g4z?mode=result" frameborder="0" class="snippet_iframe" width="100%" height="600"></iframe>
3434

docs/api/table/open-row.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ If `id` is set to 0 and `nested` to **true**, all rows in the table will be expa
3434

3535
### Example
3636

37-
### Example
38-
3937
The snippet below demonstrates how to open/close all rows with a button click:
4038

4139
<iframe src="https://snippet.dhtmlx.com/i4mi6ejn?mode=result" frameborder="0" class="snippet_iframe" width="100%" height="600"></iframe>

docs/guides/working-with-data.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,10 @@ new pivot.Pivot("#pivot", {
116116
});
117117
~~~
118118

119+
:::note
120+
By default, for the "xlsx" format, date and number fields are exported as raw values with default format or the format defined via the [`fields`](/api/config/fields-property) property. But if a template is defined for a field (see the [`tableShape`](/api/config/tableshape-property) property), it exports the rendered value defined by that template. In case both the template and `format` are set, the template settings will override the format ones.
121+
:::
122+
119123
## Defining Pivot structure
120124

121125
You can create the Pivot structure using the [`config`](/api/config/config-property) property that also defines how data is aggregated. By default, it has no predefined values. You need to specify this property to define the configuration of the Pivot table, namely, which fields should be applied as columns and rows. The property also allows adding data aggregation methods to be applied to the fields. Here you can also add filters. Please, refer to the [`config`](/api/config/config-property) property description for details.

0 commit comments

Comments
 (0)