JSFiddle - React, Tailwind, and code Playground
by Serghei Cebotari
HTML
<link rel="stylesheet" type="text/css" href="http://extjs.cachefly.net/extjs/4.0.1/resources/css/ext-all.css" />
JavaScript
Ext.application({
name : 'test',
launch : function()
{
var store = Ext.create('Ext.data.Store', {
autoLoad : true,
fields : [
{name : 'id', type : 'int'}, {name : 'month', type : 'string'}
],
data : [
{"id" : 0, "month" : "January"},
{"id" : 1, "month" : "February"},
{"id" : 2, "month" : "March"},
{"id" : 3, "month" : "April"},
{"id" : 4, "month" : "May"},
{"id" : 5, "month" : "June"},
{"id" : 6, "month" : "July"},
{"id" : 7, "month" : "August"},
{"id" : 8, "month" : "September"},
{"id" : 9, "month" : "October"},
{"id" : 10, "month" : "November"},
{"id" : 11, "month" : "December"}
]
});
var grid = Ext.create('Ext.grid.Panel');
}
});