how to display list and other labels in single page using sencha touch2(如何使用sencha Touch2在单页中显示列表和其他标签)
本文介绍了如何使用sencha Touch2在单页中显示列表和其他标签的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我是Sencha Touch2的新手。我想在想要显示的列表中显示下面的一些文本标签。所以我已经定义了一些标签,并访问Twitter服务,它将提供数据列表。以下是我的代码。
- 在此代码中,如果我注释扩展:‘Ext.form.Panel’,如果我使用扩展:‘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>'
}]
}
});
推荐答案
只创建Ext.Panel({}),您可以在这些面板中放置其他Sencha元素。我希望能帮助你。:)
这篇关于如何使用sencha Touch2在单页中显示列表和其他标签的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:如何使用sencha Touch2在单页中显示列表和其他标签
基础教程推荐
猜你喜欢
- 在for循环中使用setTimeout 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 动态更新多个选择框 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01