How can I wrap very long titles in a form and a fieldset?
I took this code from Sencha's docs and simply added a long title, and added a width. Unfortunately, the title is truncated with ellipsis.
Here's what it looks like:
Here's the modified Sencha source: (http://docs.sencha.com/touch/2.2.1/#!/api/Ext.form.FieldSet)
Ext.create('Ext.form.Panel', {
fullscreen: true,
items: [
{
xtype: 'fieldset',
title: 'How much wood would a woodchuck chuck if a woodchuck could chuck wood?',
width: 300,
instructions: 'Tell us all about yourself',
items: [
{
xtype: 'textfield',
name : 'firstName',
label: 'First Name'
},
{
xtype: 'textfield',
name : 'lastName',
label: 'Last Name'
}
]
}
]
});