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/pagination/init.md
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -85,13 +85,15 @@ Add two containers:
85
85
86
86
## Initialize a related widget
87
87
88
-
{{note DHTMLX Pagination can be used in conjunction with data components like [List](list.md), [DataView](dataview.md), [Tree](tree.md), [Grid](grid.md), or [TreeGrid](/grid/treegrid_mode/).}}
88
+
:::note
89
+
DHTMLX Pagination can be used in conjunction with data components like [List](list.md), [DataView](dataview.md), [Tree](tree.md), [Grid](grid.md), or [Grid in the TreeGrid mode](/grid/treegrid_mode/).
90
+
:::
89
91
90
92
Choose the widget you want to link to the Pagination component, for example, DHTMLX List.
91
93
92
94
1\. Initialize the widget with the object constructor, like this:
93
95
94
-
~~~js title="index.js"
96
+
~~~jsx title="index.js"
95
97
// creating a related DHTMLX List widget
96
98
constwidget=newdhx.List("widget_container", {
97
99
css:"dhx_widget--bordered",
@@ -106,7 +108,7 @@ The constructor has two parameters:
106
108
107
109
2\. Load data into the widget:
108
110
109
-
~~~js title="index.js"
111
+
~~~jsx title="index.js"
110
112
// loading data into the created DHTMLX List
111
113
widget.data.parse(widget_data);
112
114
~~~
@@ -118,7 +120,7 @@ Initialize pagination with the *dhx.Pagination* object constructor. The construc
118
120
- the HTML container for Pagination,
119
121
- optional, an object with configuration properties. If this argument is not passed to the constructor, the settings will be default.
Copy file name to clipboardExpand all lines: docs/tree_collection/api/treecollection_getfilters_method.md
+10-2Lines changed: 10 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,9 +15,17 @@ description: You can explore the getFilters method of TreeCollection in the docu
15
15
-`permanent: boolean` - optional, <i>false</i> by default. Allows getting the list of permanent filters
16
16
17
17
@returns:
18
-
-`filters: object` - an object with the applied filters, where the key is the id of a filter and the value is an object with the [**rule** and **config** properties](tree_collection/api/treecollection_filter_method.md)
18
+
-`filters: object` - an object with the applied filters, where the key is the id of a filter and the value is an object with the [`rule` and `config` properties](tree_collection/api/treecollection_filter_method.md)
0 commit comments