Skip to content

Commit 16ea244

Browse files
committed
[add] a section on multi-user backend
1 parent f4c268d commit 16ea244

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

docs/integration/suite_and_backend.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ The DHTMLX library includes the [DataCollection](/data_collection/) helper that
1414

1515
Thus, to transfer data from your backend to the Suite components, all you need to do is create a valid JSON dataset. You can load it into the component using the [load()](/data_collection/api/datacollection_load_method/) method of DataCollection.
1616

17+
Besides, the DHTMLX library allows providing a [multi-user backend](#multi-user-backend-for-suite-widgets) for any Suite component.
18+
1719
## Examples of using DHTMLX Suite widgets with Node.js
1820

1921
Let's have an overview of the examples.
@@ -128,6 +130,12 @@ This example of Grid is visually the same as the previous one but the ways of ad
128130

129131
The following request methods are used in this example: `GET`, `PUT`, `POST`, `DELETE`.
130132

133+
## Multi-user backend for Suite widgets
134+
135+
You can create a multi-user (real-time updated) backend for Suite widgets. The backend can be implemented in any language and you can use any library to allow the client and the server sides interact via the WebSocket protocol.
136+
137+
There is an [example](https://github.com/DHTMLX/nodejs-suite-demo/blob/master/public/views/12_grid_with_form_multiuser.html) that shows a multi-user backend for Grid, implemented with the help of Node.js and the Faye library. You can provide live data updates for any Suite widget based on this example.
138+
131139
:::info
132140
Download and take a look at the [Examples of using DHTMLX Suite widgets with Node.js](https://github.com/DHTMLX/nodejs-suite-demo).
133-
:::
141+
:::

docs/whatsnew.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,13 @@ This version brings some updates in the API methods. Check the [Migration](migra
2222

2323
#### Common features
2424

25-
- Multi-user (live update) backend for Suite widgets
25+
- [Multi-user (live update) backend](integration/suite_and_backend.md#multi-user-backend-for-suite-widgets) for Suite widgets
2626

2727
#### Grid
2828

2929
- [Row expander](grid/configuration.md#row-expander) with the possibility to insert any Suite widget or HTML content (PRO version)
3030
- [Multi-sorting](grid/usage.md#sorting-by-multiple-columns) functionality that allows sorting Grid by several columns (PRO version)
3131

32-
### Updates
33-
34-
#### Grid
35-
36-
- Improved and extended export to Excel functionality
37-
3832
### Fixes
3933

4034
- DataCollection. The `sort()` method called without arguments doesn't reset the applied sorting

0 commit comments

Comments
 (0)