libs/cbi: add support for hidden form fields in sections
authorJo-Philipp Wich <jow@openwrt.org>
Sun, 11 Jan 2009 03:44:04 +0000 (03:44 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Sun, 11 Jan 2009 03:44:04 +0000 (03:44 +0000)
libs/cbi/luasrc/view/cbi/ucisection.htm

index 5504a74..54115f6 100644 (file)
@@ -13,6 +13,16 @@ $Id$
 
 -%>
 
+<%-
+       if type(self.hidden) == "table" then
+               for k, v in pairs(self.hidden) do
+-%>
+       <input type="hidden" name="cbid.<%=self.config%>.<%=section%>.<%=k%>" value="<%=luci.util.pcdata(v)%>" />
+<%-
+               end
+       end
+%>
+
 <% self:render_children(section, scope or {}) %>
 
 <% if self.error and self.error[section] then -%>