Basics

Formatting

Context menu

Drag n Drop

Spreadsheet

Tabs

Export (csv, html, pdf, xlsx )

RTL Layout

Layouts

Rows

Paging

Big data

Columns

Cells

Inline editing

Row Grouping

Pivot

Sorting

Filter

Selections

Nesting / Row details

Tree grid

Charts

Angular

React React

Vue Vue

Knockout

;

How to load remote data in javascript grid?

Same domain requests

Same domain requests can be handled by

  • set dataModel.url to the absolute or relative url in javascript
  • set dataModel.location to 'remote' in javascript
  • set dataModel.dataType to 'json' in javascript
  • send json response from server in the format:
    {data: [row1, row2, row3, ...]}

Cross domain requests

Any RESTful conversation based on GET requests can be converted into a jsonp ( for cross domain access ) by

  • set dataModel.dataType to 'jsonp' in javascript
  • wrap the existing json response from server inside $_GET[ 'callback' ]( ) so as to make it $_GET[ 'callback' ]( existing json response from server )