"TypeError: 'undefined' is not an object (evaluating 'records.length')" - Error
Hello Everyone..
Hope someone can help me. I am getting the following javascript error
TypeError: 'undefined' is not an object (evaluating 'records.length')
Here is the relevant code
Ext.regModel('Contact', {
fields: ['firstName', 'lastName','status','creationDate']
});
var store = new Ext.data.Store({
model: 'Contact',
//sorters: 'creationDate',
proxy: {
type: 'ajax',
url : 'userList.json',
reader: {
type: 'json',
root: 'users'
}
},
autoLoad: true
});
Here is my JSON String.
{
"users": [
{
"firstName": "Joe",
"lastName": "Blow",
"status": "Action Required",
"creationDate": "10/10/1974"
},
{
"firstName": "Bob",
"lastName": "Smithr",
"status": "Action Requsired",
"creationDate": "10/11/1974"
}
]
}
Any ideas?