summaryrefslogtreecommitdiff
path: root/luci2/htdocs/luci2/luci2.js
diff options
context:
space:
mode:
Diffstat (limited to 'luci2/htdocs/luci2/luci2.js')
-rw-r--r--luci2/htdocs/luci2/luci2.js9
1 files changed, 7 insertions, 2 deletions
diff --git a/luci2/htdocs/luci2/luci2.js b/luci2/htdocs/luci2/luci2.js
index 45584e7..c6c13a1 100644
--- a/luci2/htdocs/luci2/luci2.js
+++ b/luci2/htdocs/luci2/luci2.js
@@ -5660,17 +5660,19 @@ function LuCI2()
.attr('id', this.id(sid));
var t = $('<input />')
+ .addClass('form-control')
.attr('type', 'text')
.hide()
.appendTo(d);
var s = $('<select />')
+ .addClass('form-control')
.appendTo(d);
var evdata = {
self: this,
- input: this.validator(sid, t),
- select: this.validator(sid, s)
+ input: t,
+ select: s
};
s.change(evdata, this._change);
@@ -5680,6 +5682,9 @@ function LuCI2()
t.val(this.ucivalue(sid));
t.blur();
+ this.validator(sid, t);
+ this.validator(sid, s);
+
return d;
},