Cédric Krier pushed to branch branch/default at Tryton / Tryton


Commits:
93ea98d8 by Cédric Krier at 2023-01-30T00:44:18+01:00
Search also for select tag for the focus chain

Closes #12051
- - - - -


1 changed file:

- sao/src/common.js


Changes:

=====================================
sao/src/common.js
=====================================
@@ -3829,7 +3829,7 @@
     });
 
     Sao.common.get_focus_chain = function(element) {
-        var elements = element.find('input', 'textarea');
+        var elements = element.find('input,select,textarea');
         elements.sort(function(a, b) {
             if (('tabindex' in a.attributes) && ('tabindex' in b.attributes)) {
                 var a_tabindex = parseInt(a.attributes.tabindex.value);



View it on Heptapod: 
https://foss.heptapod.net/tryton/tryton/-/commit/93ea98d89723ccef930e856981a9534face1e807

-- 
View it on Heptapod: 
https://foss.heptapod.net/tryton/tryton/-/commit/93ea98d89723ccef930e856981a9534face1e807
You're receiving this email because of your account on foss.heptapod.net.


Reply via email to