[luci] [PATCH][cbi-templates] added readonly property to TextValue (tvalue.htm) template

Christian Schoenebeck christian.schoenebeck at gmail.com
Mon Aug 11 22:05:56 CEST 2014


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 at gmail.com>

---

Index: modules/base/luasrc/view/cbi/tvalue.htm
===================================================================
--- modules/base/luasrc/view/cbi/tvalue.htm	(Revision 10472)
+++ modules/base/luasrc/view/cbi/tvalue.htm	(Arbeitskopie)
@@ -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%>


More information about the luci mailing list