Skip to content

Commit

Permalink
v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rmcastro committed May 27, 2024
1 parent 3ec72b8 commit 8f28ff1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/usage/client-side.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ outline: deep

The main feature of a ClientSide DataTable is that all data and data manipulation logic are handled on the client side, i.e., in the user's web browser, rather than making requests to the web server for each interaction. This means that all the data needed to populate the table is initially loaded in the user's browser, and operations such as search, filtering, sorting, and pagination are performed without the need to communicate with the server.

If you want to download the example, you can find it [here](https://github.com/rmunate/EasyDataTable/tree/main/examples/ClientSide).
If you want to download the example, you can find it [here](https://github.com/rmunate/EasyDataTable/tree/master/examples/ClientSide).

Let's see how to set up the backend for a ClientSide table. Remember that in these cases, all the information must be delivered to the Frontend, which is not recommended for very large data sizes.

Expand Down
2 changes: 1 addition & 1 deletion docs/usage/server-side.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The primary feature of a ServerSide DataTable is that most data-related operatio

**Security:** By performing most operations on the server, greater security and authorization control can be implemented to ensure that users only access data they are authorized to view.

If you want to download the example, you can find it [here](https://github.com/rmunate/EasyDataTable/tree/main/examples/ServerSide).
If you want to download the example, you can find it [here](https://github.com/rmunate/EasyDataTable/tree/master/examples/ServerSide).

Here's how to set up the backend for a ServerSide table:

Expand Down

0 comments on commit 8f28ff1

Please sign in to comment.