Sencha-Touch 2 で簡単なデータの一覧を表示したいのですが、なぜかデータが表示されず、わかりません。2 つのタイトル バーが表示されます。「最近の投稿」が表示された正しいタイトルと、その下にある空白のタイトルです。どうしてこうなるのかわかりません。おそらく、それはディスプレイの残りの部分と競合していますか?
Ext.define('GS.view.NewBlog',{
extend: 'Ext.navigation.View',
xtype: 'newblog',
requires: [
'Ext.dataview.List',
'Ext.TitleBar'
],
config: {
title: 'Blog',
iconCls: 'star',
items: {
docked: 'top',
xtype: 'titlebar',
title: 'Recent Posts'
}, // end items
store: {
fields: ['title','author'],
data: [
{title: 'This is the first Title', author: 'John Smith'},
{title: 'This is the second title', author: 'Jane Doe'}
] // end data
} // end store
}, // end config
itemTpl: '{title}'
});