add textarea/enter workaround

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
Dominik Csapak 2017-10-16 14:02:23 +02:00 committed by Dietmar Maurer
parent 5f0f6b13b5
commit a2d8b9a99a

View File

@ -171,6 +171,20 @@ Ext.define('Proxmox.UnderlayPool', {
}
});
// 'Enter' in Textareas and aria multiline fields should not activate the
// defaultbutton, fixed in extjs 6.0.2
Ext.define('PVE.panel.Panel', {
override: 'Ext.panel.Panel',
fireDefaultButton: function(e) {
if (e.target.getAttribute('aria-multiline') === 'true' ||
e.target.tagName === "TEXTAREA") {
return true;
}
return this.callParent(arguments);
}
});
// if the order of the values are not the same in originalValue and value
// extjs will not overwrite value, but marks the field dirty and thus
// the reset button will be enabled (but clicking it changes nothing)