このコンポーネントはデフォルトでアイテムをそれぞれ垂直方向と水平方向にレンダリングするため、チェックボックスグループのレイアウトとレイアウトvbox
はfieldset
必要ありません。hbox
更新されたフィドル
このプロパティを削除するだけで、すべて正常に機能します。
{
xtype: 'fieldset',
title: 'Columns',
items: [{
xtype: 'checkboxgroup',
fieldLabel: 'Show these detail columns',
labelAlign:'top',
items:[{
name:'ShowDetail',
boxLabel: 'Date',
inputValue:'time'
},{
name:'ShowDetail',
boxLabel: 'Subject',
inputValue:'title'
},{
name:'ShowDetail',
boxLabel: 'Author',
inputValue:'owner'
},{
name:'ShowDetail',
boxLabel: 'First three words',
inputValue:'content'
},{
name:'ShowDetail',
boxLabel: 'Parent',
inputValue:'category'
}]
}]
}