summaryrefslogtreecommitdiffhomepage
path: root/modules
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2014-08-12 10:39:45 +0000
committerJo-Philipp Wich <jow@openwrt.org>2014-08-12 10:39:45 +0000
commit649227308f25b4b429ada6b0b7d10e9a908b9113 (patch)
tree5036cda932dba588e5da5880bdeb1f89ec6aa633 /modules
parent5c311e3e78a94a50ea68c7c0e57f1212ba37bf17 (diff)
added readonly property to TextValue (tvalue.htm) template
A textarea has a readonly property which is currently not supported by the TextValue template ( tvalue.htm ) Here the patch to add it to tvalue.htm Signed-off-by: Christian Schoenebeck <christian.schoenebeck@gmail.com>
Diffstat (limited to 'modules')
-rw-r--r--modules/base/luasrc/view/cbi/tvalue.htm2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/base/luasrc/view/cbi/tvalue.htm b/modules/base/luasrc/view/cbi/tvalue.htm
index fcf7a6c94..4841c370a 100644
--- a/modules/base/luasrc/view/cbi/tvalue.htm
+++ b/modules/base/luasrc/view/cbi/tvalue.htm
@@ -1,5 +1,5 @@
<%+cbi/valueheader%>
- <textarea class="cbi-input-textarea" <% if not self.size then %> style="width: 100%"<% else %> cols="<%=self.size%>"<% end %> onchange="cbi_d_update(this.id)"<%= attr("name", cbid) .. attr("id", cbid) .. ifattr(self.rows, "rows") .. ifattr(self.wrap, "wrap") %>>
+ <textarea class="cbi-input-textarea" <% if not self.size then %> style="width: 100%"<% else %> cols="<%=self.size%>"<% end %> onchange="cbi_d_update(this.id)"<%= attr("name", cbid) .. attr("id", cbid) .. ifattr(self.rows, "rows") .. ifattr(self.wrap, "wrap") .. ifattr(self.readonly, "readonly") %>>
<%-=pcdata(self:cfgvalue(section))-%>
</textarea>
<%+cbi/valuefooter%>