summaryrefslogtreecommitdiffhomepage
path: root/libs/web/htdocs
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2012-06-25 09:51:59 +0000
committerJo-Philipp Wich <jow@openwrt.org>2012-06-25 09:51:59 +0000
commit6780f757d63e60f65a99ae4022f8b0d9c08fee94 (patch)
treede6037e7f7714af7569e2c25255265cf3e9a46e9 /libs/web/htdocs
parent66eec98a57e6e277c97e0e48b3a56b4813affba4 (diff)
libs/web: implement minlength(), maxlength() and rangelength() datatypes
Diffstat (limited to 'libs/web/htdocs')
-rw-r--r--libs/web/htdocs/luci-static/resources/cbi.js27
1 files changed, 27 insertions, 0 deletions
diff --git a/libs/web/htdocs/luci-static/resources/cbi.js b/libs/web/htdocs/luci-static/resources/cbi.js
index 0a49a693a..655ddbf53 100644
--- a/libs/web/htdocs/luci-static/resources/cbi.js
+++ b/libs/web/htdocs/luci-static/resources/cbi.js
@@ -216,6 +216,33 @@ var cbi_validators = {
return false;
},
+ 'rangelength': function(min, max)
+ {
+ var val = '' + this;
+ if (!isNaN(min) && !isNaN(max))
+ return ((val.length >= min) && (val.length <= max));
+
+ return false;
+ },
+
+ 'minlength': function(min)
+ {
+ var val = '' + this;
+ if (!isNaN(min))
+ return (val.length >= min);
+
+ return false;
+ },
+
+ 'maxlength': function(max)
+ {
+ var val = '' + this;
+ if (!isNaN(max))
+ return (val.length <= max);
+
+ return false;
+ },
+
'or': function()
{
for (var i = 0; i < arguments.length; i += 2)