Looks like we can't reproduce the issue or there's a problem in the test case provided.
-
Sencha User
List in a fieldset doesn't show in form.Panel view
This problem occured today, after switching from Sencha Touch 2.0 to 2.1
Browser versions tested against:
- Chrome version 23 (Mac OS X)
- Safari (Mac OS X)
Description:
- List placed within a fieldset does not show in Ext.form.Panel view
Steps to reproduce the problem:
- Create an Ext.form.Panel, place a 'list' in a 'fieldset'
The result that was expected:
- The list is seen in the view
Code:
layout: 'vbox',
items : [ {
xtype: 'fieldset',
items: [ {
xtype: 'list',
disclosure: true,
itemTpl: '{title}',
flex: 1,
data: [
{ title: 'Item 1' },
{ title: 'Item 2' },
{ title: 'Item 3' },
{ title: 'Item 4' }
]
} ]
} ]