The number refers to a technical support forum thread on Syncfusion , where a user was looking for help with an EJS Grid (Essential JS 2 Grid) using AJAX to load data.

: Set up your grid component with an empty data source or a defined URL.

To correctly load data and handle the visual "spinner" (loading indicator) during an AJAX call, you must structure your script to stringify the data object and manage the grid's state.

Hide the spinner using grid.hideSpinner() once the data has successfully returned and been assigned to the grid's dataSource .

Based on that specific technical context, here is how you "put together a content" or implementation for that scenario:

Show the spinner using grid.showSpinner() before the AJAX call starts.

: When fetching content, use JSON.stringify() to pass parameters to your server-end. Handle the Spinner :