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 options for select lists remotely?

Column Ship Country has select editor with remote data in array format being fetched from server in create event via $.getJSON and assigned to column.editor.options.

[ "USA", "Afghanistan", "Akrotiri", "Albania", "Algeria", ...]

Column Shipping Via has select editor with remote data in JSON format being fetched from server in create event via $.getJSON and assigned to column.editor.options.

[
    {"value": "", "text": ""},  
    {"value": "SE", "text": "Speedy Express" }, 
    {"value": "UP", "text": "United Package" }, 
    {"value": "FS", "text": "Federal Shipping"}
]