You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/form/features.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -103,6 +103,7 @@ In this section you will study how to send a Form to the server, how to disable
103
103
|[Is disabled](../work_with_form/#checking-if-a-form-is-disabled)| Learn how to check whether a Form or its control is disabled ([Example](https://snippet.dhtmlx.com/lthu8p6p)) |
104
104
|[Hiding / showing Form](../work_with_form/#hidingshowing-a-form)| Learn how to hide/show a Form |
105
105
|[Checking visibility of a Form](../work_with_form/#checking-if-a-form-is-visible)| Learn how to check whether a Form or its control is visible |
106
+
|[Using input masks](../work_with_form/#using-input-masks)| Learn how to use pattern and input masks to provide entering of values in a predefined way ([Example 1](https://snippet.dhtmlx.com/51wnauq3), [Example 2](https://snippet.dhtmlx.com/gu1ekt1z)) |
106
107
|[Clearing Form](../work_with_form/#clearing-form)| Learn how to clear the values and (or) validation of Form ([Example](https://snippet.dhtmlx.com/a64ih4ih)) |
Copy file name to clipboardExpand all lines: docs/grid/api/grid_group_config.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,7 +62,7 @@ You can find the detailed description of the `group` object properties with exam
62
62
- if set to *false*, the rows that don't suit the grouping criteria won't be rendered
63
63
-`fields` - (optional) predefines an extended configuration for data grouping by certain columns, by setting the rules of aggregation and rendering of the results. The attributes of the `fields` object correspond to the ids of columns for which the aggregation rules and the order of results are being configured. The configuration of a column is defined by the `IGroupOrder` object that has the following properties:
64
64
-`map` - (optional) an object for data aggregation in a group, where the keys are field names, and the values can be:
65
-
- a tuple `[string, TAggregate]` that specifies the field and the aggregation type ("sum", "count", "min", "max", "avg") from the `dhx.methods` helper
65
+
- a tuple `[string, TAggregate]` that specifies the field and the aggregation type ("sum", "count", "min", "max", "avg") from the [`dhx.methods`](helpers/data_calculation_functions.md) helper
66
66
- a user-defined aggregation function `((row: IRow[]) => string | number)`
67
67
-`summary` - (optional) specifies where the total row is rendered - at the `top` or at the `bottom` of the group
68
68
-`order` - (optional) defines the order of grouping by setting the sequence of columns for grouping. The elements of the `order` array can be:
|[Configuring data formats](../configuration/#formatting-columns)| Learn how to display values of cells in different formats (percent, currency, date and combination with templates) ([Example](https://snippet.dhtmlx.com/ox37nvdm)) |
79
-
|[Date column and support of the Date() object](https://snippet.dhtmlx.com/ylbu791i)| The example shows how [to use the Date() object for specifying dates](../api/grid_data_config/)|
79
+
|[Date column and support of the Date() object](https://snippet.dhtmlx.com/ylbu791i)| The example shows how [to use the Date() object for specifying dates](../api/grid_data_config/)|
80
+
|[Setting pattern and number masks](../configuration/#formatting-columns)| Learn how to specify input masks for the values of column cells ([Example](https://snippet.dhtmlx.com/45gjhciv)) |
80
81
81
82
82
83
@@ -130,11 +131,11 @@ In this section you will get to know how to render custom statistics in the colu
|[Defining the data calculation function](../helpers/data_calculation_functions/)| Learn how to define the default or create a custom statistical function for data calculation|
134
+
|[Defining the data calculation function](../../helpers/data_calculation_functions/)| Learn how to define the default or create a custom statistical function for data calculation|
134
135
|[Calculating a column summary](../configuration/#column-summary)| Learn how to form a summary list for a column ([Example](https://snippet.dhtmlx.com/jhjxjv2l))|
135
136
|[Calculating a Grid summary](../configuration/#grid-summary)| Learn how to form a summary list for a Grid |
136
137
|[Getting the summary object](../configuration/#getting-the-summary-object)| Learn how to get the summary object |
137
-
|[Displaying custom statistics in the column header/footer text](../configuration/#headerfooter-text)| Learn how to render custom statistics in the text of a column header/footer|
138
+
|[Displaying custom statistics in the column header/footer text](../configuration/#headerfooter-text)| Learn how to render custom statistics in the text of a column header/footer ([Example](https://snippet.dhtmlx.com/jhjxjv2l))|
138
139
|[Displaying custom statistics in the column header/footer tooltip](../configuration/#column-headerfooter-tooltip)| Learn how to render custom statistics in the tooltip of a column header/footer|
139
140
|[Displaying custom statistics in the spans](../configuration/#spans)| Learn how to render custom statistics in the spans|
Copy file name to clipboardExpand all lines: docs/grid/usage.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -273,7 +273,7 @@ You can filter grid data by the specified criteria with the help of the `filter(
273
273
</tr>
274
274
<tr>
275
275
<td><b>config</b></td>
276
-
<td>(<i>object</i>) optional, an object with the following properties:<ul><li><b>id</b> (<i>string</i>) - optional, the id of the filter</li><li><b>add</b> (<i>boolean</i>) defines whether each next filtering will be applied to the already filtered data (<i>true</i>), or to the initial data (<i>false</i>, default)</li><li><b>permanent</b> (<i>boolean</i>) - optional, <i>true</i> to make the current filter permanent. It will be applied even if the next filtering doesn't have the <b>add:true</b> property in its configuration object. Such a filter can be removed just with the resetFilter() method</li><li><b>smartFilter</b> (<i>boolean</i>) defines whether a filtering rule will be applied after adding and editing items of the collection. <b>Deprecated since v8.2</b> (check <a href="../../migration#81---82">Migration to newer versions</a>) and replaced with the <b>permanent</b> property (see above)</li></ul></td>
276
+
<td>(<i>object</i>) optional, an object with the following properties:<ul><li><b>id</b> (<i>string</i>) - optional, the id of the filter</li><li><b>add</b> (<i>boolean</i>) defines whether each next filtering will be applied to the already filtered data (<i>true</i>), or to the initial data (<i>false</i>, default)</li><li><b>permanent</b> (<i>boolean</i>) - optional, <i>true</i> to make the current filter permanent. It will be applied even if the next filtering doesn't have the <b>add:true</b> property in its configuration object. Such a filter can be removed just with the resetFilter() method</li></ul></td>
0 commit comments