Skip to main content
Version: 2.70.0-Beta 🚧

Overview

This guide explains how to perform server-side operations on a table component in ToolJet. While most databases offer support for server-side operations, the specific implementation can vary depending on the database. For the purposes of this guide, PostgreSQL will be used as the data source to demonstrate the process.

Server Side v/s Client Side

Server-side operations refer to tasks executed on the server, such as data fetching, filtering, sorting, and pagination. These operations leverage the server's resources, making them more efficient when handling large datasets and ensuring faster load times for users. In contrast, client-side operations are performed in the user's browser or application, which may lead to performance issues with large datasets as all data is first fetched and then processed locally. Server-side operations offer better scalability and performance, especially for resource-intensive tasks.

When to Use Sever Side Operations?

  1. Handling Large Datasets
  2. Security and Data Integrity
  3. Complex Business Logic

When to Use Client Side Operations?

  1. Real-time Interactivity
  2. Reduced Server Load
  3. Offline Capabilities

Supported Operations

Following server side operations can be performed on a Table in ToolJet:

Serverside Operations Present for Table Component in ToolJet