Check the code n point the mistake
- by Vibha
here is the code:
Ext.onReady(function(){
alert("inside onReady");
Ext.QuickTips.init();
var employee = Ext.data.Record.create([
{name:'firstname'},
{name:'lastname'}]);
var myReader = new Ext.data.JsonReader({
root:"EmpInfo",
},employee);
var store = new Ext.data.JsonStore({
id:'ID'
…