From bddc2053b4d020a1982c8bfb86dde5a88dc47be6 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Thu, 26 Nov 2009 00:24:59 +0000 Subject: [PATCH] libs/cbi: fix dependency handling of radio buttons --- libs/cbi/htdocs/luci-static/resources/cbi.js | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/libs/cbi/htdocs/luci-static/resources/cbi.js b/libs/cbi/htdocs/luci-static/resources/cbi.js index bbea0f37d..247228d22 100644 --- a/libs/cbi/htdocs/luci-static/resources/cbi.js +++ b/libs/cbi/htdocs/luci-static/resources/cbi.js @@ -45,7 +45,18 @@ function cbi_d_checkvalue(target, ref) { var t = document.getElementById(target); var value; - if (!t || !t.value) { + if (!t) { + var tl = document.getElementsByName(target); + + if( tl.length > 0 && tl[0].type == 'radio' ) + for( var i = 0; i < tl.length; i++ ) + if( tl[i].checked ) { + value = tl[i].value; + break; + } + + value = value ? value : ""; + } else if (!t.value) { value = ""; } else { value = t.value; -- 2.11.0