Thank you for reporting this bug. We will make it our priority to review this report.
-
Sencha User
[FIXED-152] Setting inputCls to multiple classes causes input to become unclickable
Load the below exable, you can click on the first input box to focus it, but you can't click on the second.
Code:
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'}]
}]
}]
});
}});
-
Interesting, its due to how the selector is built from the class entered. I don't think we intended to allow multiple classes to be entered this way, but we'll discuss it.
-