如何在表单和字段集中包装很长的标题?
我从 Sencha 的文档中获取了这段代码,并简单地添加了一个长标题,并添加了一个宽度。不幸的是,标题被省略号截断。
这是它的样子:
这是修改后的 Sencha 源:(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'
}
]
}
]
});