Knižnica, využíva jQuery, orientovaná iba na klientské použitie, nezávislá na serverovej technológii, beží aj v PHP aj v ASP.NET.
// create the Grid
var grid = new Ext.grid.GridPanel({
store: store,
columns: [
{ id: 'company' , header: 'Company' , width: 160, sortable: true , dataIndex: 'company'},
{ header: 'Price' , width: 75, sortable: true , renderer: 'usMoney' , dataIndex: 'price' },
],
stripeRows: true,
autoExpandColumn: ‘company’,
height: 350,
width: 600
});
http://www.extjs.com/deploy/dev/examples/
http://examples.extjs.eu/
