Skip to content
Snippets Groups Projects
Commit 82a98715 authored by Antoine Guenet's avatar Antoine Guenet
Browse files

[IMP] web: extend form default autofocus to textarea and contenteditable


When rendering, the form view looks for the element it should autofocus,
and defaults to the first text input it finds. This extends that default
behavior to the first textarea or contenteditable element.

closes odoo/odoo#106537

Signed-off-by: default avatarDavid Monjoie (dmo) <dmo@odoo.com>
parent 7e14e2a9
No related branches found
No related tags found
No related merge requests found
......@@ -49,9 +49,10 @@ export class FormRenderer extends Component {
}
let elementToFocus;
if (isVirtual) {
const focusableSelectors = ['input[type="text"]', 'textarea', '[contenteditable]'];
elementToFocus =
(autofocusFieldId && rootEl.querySelector(`#${autofocusFieldId}`)) ||
rootEl.querySelector(`.o_content .o_field_widget input[type="text"]`);
rootEl.querySelector(focusableSelectors.map(sel => `.o_content .o_field_widget ${sel}`).join(', '));
}
if (elementToFocus) {
elementToFocus.focus();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment