PHPackages                             rampesna/jqx-server-side - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. rampesna/jqx-server-side

ActiveLibrary

rampesna/jqx-server-side
========================

JQX Server Side is a PHP library that helps you to create a server side for JQX DataTables.

v1.1.0(2y ago)316MITPHPPHP &gt;=8.0

Since Oct 12Pushed 2y ago1 watchersCompare

[ Source](https://github.com/Rampesna/jqx-server-side)[ Packagist](https://packagist.org/packages/rampesna/jqx-server-side)[ RSS](/packages/rampesna-jqx-server-side/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (2)Dependencies (2)Versions (4)Used By (0)

JqxGrid Server-Side Integration
===============================

[](#jqxgrid-server-side-integration)

This package has been meticulously designed to optimize JqxGrid for server-side operations for Laravel and other PHP projects. With this integration, users can now seamlessly manage vast datasets and improve overall performance. Harness the full potential of JqxGrid with our specialized server-side solution.

[![Total Downloads](https://camo.githubusercontent.com/f473789b2fe3a0131cde80e2b94928ffe8a7a2c86caabd896e5f38796f96f5c2/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f72616d7065736e612f6a71782d7365727665722d736964652e737667)](https://packagist.org/packages/rampesna/jax-server-side)[![GitHub repo size](https://camo.githubusercontent.com/ffa1b564e8cbac40d7dcd6584a538d8f143206bbc31639f10c8e1407c7c48033/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f7265706f2d73697a652f72616d7065736e612f6a71782d7365727665722d73696465)](https://camo.githubusercontent.com/ffa1b564e8cbac40d7dcd6584a538d8f143206bbc31639f10c8e1407c7c48033/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f7265706f2d73697a652f72616d7065736e612f6a71782d7365727665722d73696465)[![Build](https://camo.githubusercontent.com/b0c6c6845a74cb65a7f0a32bdcfd8fbf80eeb40026c4029af424ab371c94b8bd/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6275696c642d70617373696e672d627269676874677265656e)](https://camo.githubusercontent.com/b0c6c6845a74cb65a7f0a32bdcfd8fbf80eeb40026c4029af424ab371c94b8bd/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6275696c642d70617373696e672d627269676874677265656e)

Requirements
------------

[](#requirements)

- PHP &gt;= 8.0
- Illuminate/Database &gt;= 8.0
- Illuminate/Htpp &gt;= 8.0

Installation
------------

[](#installation)

```
composer require rampesna/jqx-server-side
```

Usage
-----

[](#usage)

### Controller

[](#controller)

```
use Rampesna\JqxGrid;

class ExampleController extends Controller
{
    public function index(Request $request)
    {
        $tableName = 'your_table_name';
        $columns = [
            'id',
            'name',
            'surname',
            // ...
        ];

        $jqxGrid = new JqxGrid(
            $tableName,
            $columns,
            $request
        );

        return response()->json($jqxGrid->initialize());
    }
}
```

### View

[](#view)

```
var yourGridDiv = $('#your-grid-div');

var source = {
    datatype: "json",
    datafields: [
        {name: 'id', type: 'integer'},
        // your columns ...
    ],
    cache: false,
    url: 'your_controller_url',
    beforeSend: function(xhr) {
        // if you need to send authorization token
        xhr.setRequestHeader('Authorization', 'Bearer ' + your_token);
        xhr.setRequestHeader('Accept', 'application/json');
    },
    beforeprocessing: function (data) {
        source.totalrecords = data[0].TotalRows;
    },
    root: 'Rows',
    filter: function () {
        yourGridDiv.jqxGrid('updatebounddata', 'filter');
    },
    sort: function () {
        yourGridDiv.jqxGrid('updatebounddata');
    }
};

var dataAdapter = new $.jqx.dataAdapter(source);

yourGridDiv.jqxGrid({
    // other options ...
    source: dataAdapter,
    filterable: true,
    showfilterrow: true,
    pageable: true,
    sortable: true,
    virtualmode: true,
    rendergridrows: function (params) {
        return params.data;
    },
    columns: [
        {
            text: '#',
            dataField: 'id',
            columntype: 'textbox',
        },
        // your columns ...
    ],
});
```

License
-------

[](#license)

[![MIT License](https://camo.githubusercontent.com/784362b26e4b3546254f1893e778ba64616e362bd6ac791991d2c9e880a3a64e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c6963656e73652d4d49542d677265656e2e737667)](https://choosealicense.com/licenses/mit/)

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity50

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~3 days

Total

3

Last Release

936d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/8bbd9672191bc31c11cff8759fa772a839dab31db6adfaa3d3016ea7cd16f436?d=identicon)[Rampesna](/maintainers/Rampesna)

---

Top Contributors

[![Rampesna](https://avatars.githubusercontent.com/u/28292529?v=4)](https://github.com/Rampesna "Rampesna (10 commits)")

### Embed Badge

![Health badge](/badges/rampesna-jqx-server-side/health.svg)

```
[![Health](https://phpackages.com/badges/rampesna-jqx-server-side/health.svg)](https://phpackages.com/packages/rampesna-jqx-server-side)
```

###  Alternatives

[larastan/larastan

Larastan - Discover bugs in your code without running it. A phpstan/phpstan extension for Laravel

6.4k43.5M5.2k](/packages/larastan-larastan)[laravel/passport

Laravel Passport provides OAuth2 server support to Laravel.

3.4k85.0M531](/packages/laravel-passport)[yadahan/laravel-authentication-log

Laravel Authentication Log provides authentication logger and notification for Laravel.

416632.8k5](/packages/yadahan-laravel-authentication-log)[essa/api-tool-kit

set of tools to build an api with laravel

52680.5k](/packages/essa-api-tool-kit)[pressbooks/pressbooks

Pressbooks is an open source book publishing tool built on a WordPress multisite platform. Pressbooks outputs books in multiple formats, including PDF, EPUB, web, and a variety of XML flavours, using a theming/templating system, driven by CSS.

44643.1k1](/packages/pressbooks-pressbooks)[defstudio/pest-plugin-laravel-expectations

A plugin to add laravel tailored expectations to Pest

98548.9k4](/packages/defstudio-pest-plugin-laravel-expectations)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
