i am new to sencha touch 2. while i was trying to instantiate after creating a blog view by following instructions from a tutorial.this error "Uncaught Error: [Ext.createByAlias] Cannot create an instance of unrecognized alias: widget.blogpanel" appeared;
the code of blog.js is given below:
Ext.define('GS.view.blog',{
extend:'Ext.navigation.View',
xtype: 'blog',
config:{
title: 'Blog',
iconCls: 'star',
items:
{
xtype:'list',
itemTpl:'{title}',
store:
{
autoLoad: true,
fields:['title','author','content'],
proxy:
{
type:'jsonp',
url: 'https://ajax.googleapis.com/ajax/services/feed/load?v=1.0&q=http://feeds.feedburner.com/SenchaBlog',
reader:
{
type:'json',
rootProperty:'responseData.feed.entries',
}
}
}
}
}
});