From 309a448a1fa0489aa25bdfe639156326835e7ba1 Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Wed, 17 Sep 2008 12:06:05 +0000 Subject: [PATCH] Don't validate dependencies for fields which are not part of the form --- libs/cbi/htdocs/luci-static/resources/cbi.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/libs/cbi/htdocs/luci-static/resources/cbi.js b/libs/cbi/htdocs/luci-static/resources/cbi.js index f70818e16..33a328cff 100644 --- a/libs/cbi/htdocs/luci-static/resources/cbi.js +++ b/libs/cbi/htdocs/luci-static/resources/cbi.js @@ -24,11 +24,13 @@ function cbi_d_add(field, dep, next) { } } -function cbi_d_value(target) { +function cbi_d_checkvalue(target, ref) { var t = document.getElementById(target); var value - if (!t || !t.value) { + if (!t) { + return true + } else if (!t.value) { value = ""; } else { value = t.value; @@ -38,14 +40,14 @@ function cbi_d_value(target) { } } - return value + return (value == ref) } function cbi_d_check(deps) { for (var i=0; i