2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 06:39:11 +00:00

fhemweb.js: scroll to attr select after click on existing (Forum #131811)

git-svn-id: https://svn.fhem.de/fhem/trunk@27114 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2023-01-24 13:13:15 +00:00
parent 70f2822fa3
commit fc5c812cb2

View File

@ -245,7 +245,7 @@ FW_jqueryReadyFn()
$(sel).append('<option value="'+attrName+'">'+attrName+'</option>');
$(sel).val(attrName);
FW_detailSelect(sel, true);
$(sel).trigger("change");
$(sel).trigger("change").focus();
});
});