From 879fb842298d04e0f5a44b31451ac863e84edd56 Mon Sep 17 00:00:00 2001 From: ralf Date: Wed, 27 Jul 2022 10:29:31 +0200 Subject: [PATCH] automatic focus on first et2-textbox too, not just input --- api/js/etemplate/etemplate2.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/js/etemplate/etemplate2.ts b/api/js/etemplate/etemplate2.ts index 13a0b5b2e5..28ab805555 100644 --- a/api/js/etemplate/etemplate2.ts +++ b/api/js/etemplate/etemplate2.ts @@ -830,7 +830,7 @@ export class etemplate2 public focusOnFirstInput() { - const $input = jQuery('input:visible', this.DOMContainer) + const $input = jQuery('input:visible,et2-textbox:visible', this.DOMContainer) // Date fields open the calendar popup on focus .not('.et2_date') .filter(function()