From: Jo-Philipp Wich Date: Fri, 19 Feb 2016 16:20:50 +0000 (+0100) Subject: luci-base: cbi: fix button handling for dynamic lists X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=3b86fd1d1b690b6757aa47fe13bd9c381e6e7cc2;ds=sidebyside luci-base: cbi: fix button handling for dynamic lists Signed-off-by: Jo-Philipp Wich --- diff --git a/modules/luci-base/htdocs/luci-static/resources/cbi.js b/modules/luci-base/htdocs/luci-static/resources/cbi.js index 26fd92471..b285ee26c 100644 --- a/modules/luci-base/htdocs/luci-static/resources/cbi.js +++ b/modules/luci-base/htdocs/luci-static/resources/cbi.js @@ -592,6 +592,7 @@ function cbi_combobox(id, values, def, man, focus) { var obj = document.getElementById(id) var sel = document.createElement("select"); sel.id = selid; + sel.index = obj.index; sel.className = obj.className.replace(/cbi-input-text/, 'cbi-input-select'); if (obj.nextSibling) { @@ -925,14 +926,14 @@ function cbi_dynlist_init(parent, datatype, optional, choices) input.value = ''; cbi_dynlist_keydown({ - target: se, + target: input, keyCode: 8 }); } else { cbi_dynlist_keydown({ - target: se, + target: input, keyCode: 13 }); }