将数据列表嵌套在选项卡面板中
我试图在 sencha touch 的选项卡面板中嵌套一个数据列表(twitter),但是当我添加它时它不会加载。不确定是什么阻止了它加载。我确信这是可能的。任何对此的帮助都会很棒
var timeline = viewport.textDetails = new Ext.Component({
cls: 'timeline',
scroll: 'vertical',
tpl: [
'<tpl for=".">',
'<div class="tweet">',
'<div class="avatar"><img src="{profile_image_url}" /></div>',
'<div class="tweet-content">',
'<h2>{from_user}</h2>',
'<p>{text}</p>',
'</div>',
'</div>',
'</tpl>']
});
var panel = new Ext.TabPanel({
fullscreen: true,
items: [timeline]
});
var reader = Ext.util.JSONP.request({
url: 'http://search.twitter.com/search.json',
callbackKey: 'callback',
params: {
q: ',test'
},
callback: function (data) {
data = data.results;
timeline.update(data);
}
});
I am trying to nest a datalist(twitter) inside a tabpanel in sencha touch, but it doesn't load when i add this in. Not sure whats preventing it from loading.I am sure this is possible though. ANy help on this would be great
var timeline = viewport.textDetails = new Ext.Component({
cls: 'timeline',
scroll: 'vertical',
tpl: [
'<tpl for=".">',
'<div class="tweet">',
'<div class="avatar"><img src="{profile_image_url}" /></div>',
'<div class="tweet-content">',
'<h2>{from_user}</h2>',
'<p>{text}</p>',
'</div>',
'</div>',
'</tpl>']
});
var panel = new Ext.TabPanel({
fullscreen: true,
items: [timeline]
});
var reader = Ext.util.JSONP.request({
url: 'http://search.twitter.com/search.json',
callbackKey: 'callback',
params: {
q: ',test'
},
callback: function (data) {
data = data.results;
timeline.update(data);
}
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
把 true 改成 false 就可以正常工作了
Change true to false and it works fine