meyerovb
20 Jul 2010, 10:33 AM
Load the below exable, you can click on the first input box to focus it, but you can't click on the second.
Ext.setup({ onReady: function () {
new Ext.Panel({ fullscreen: true,
items: [
{
xtype: 'form',
items: [
{ xtype: 'fieldset',
items: [{ xtype: 'textfield', inputCls: 'a' },
{ xtype: 'textfield', inputCls: 'a b'}]
}]
}]
});
}});
Ext.setup({ onReady: function () {
new Ext.Panel({ fullscreen: true,
items: [
{
xtype: 'form',
items: [
{ xtype: 'fieldset',
items: [{ xtype: 'textfield', inputCls: 'a' },
{ xtype: 'textfield', inputCls: 'a b'}]
}]
}]
});
}});