我是sencha touch2的新手。我想在想要的显示列表中显示下面的一些文本标签。所以我定义了一些标签并访问 twitter 服务它将给出数据列表。下面是我的代码。
- 在这段代码中,如果我评论了extend:'Ext.form.Panel',如果我使用了extend:'Ext.navigation.View',那么列表数据将显示但不会显示定义的标签。
- 如果我评论扩展:'Ext.navigation.View',如果我使用扩展:'Ext.form.Panel',则列表数据不会显示,但会显示定义的标签。
请告诉我我的代码有什么问题:
代码:
Ext.define("E:\SenchaTouch.view.Main", {
extend: 'Ext.form.Panel',
//extend: 'Ext.navigation.View',
xtype: 'companyprofilepage',
id: 'companyprofile',
config: {
items: [
{
xtype: 'toolbar',
docked: 'top',
title: 'My Toolbar'
},
{
xtype: 'titlebar',
title: 'Title name'
},
{
margin: '10',
xtype: 'label',
html: 'Info1'
},
{
margin: '10',
xtype: 'label',
html: 'A company is a business organization. It is an association or collection of individual real '
},
{
xtype: 'list',
itemTpl: '{title}',
store: {
autoLoad: true,
fields: ['from_user', 'text', 'profile_image_url'],
proxy: {
type: 'jsonp',
url: 'http://search.twitter.com/search.json?q=Sencha Touch',
reader: {
type: 'json',
root: 'results'
}
}
},
itemTpl: '<img src="{profile_image_url}" /><h2>{from_user}</h2><p>{text}</p>'
}]
}
});