diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-07-24 11:48:03 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-07-24 11:48:03 +0000 |
commit | a798da5d8b54ed01ab7e80fcc04e184c6f7225a1 (patch) | |
tree | 84a751a8834f1095d9aaaf95d8257b8faadb56a4 /libs/web/luasrc | |
parent | 3c1c9d4400ff8b6773187dd195ed3594221ca0b2 (diff) |
libs/web: support creating networks in checkbox network widget (#457)
Diffstat (limited to 'libs/web/luasrc')
-rw-r--r-- | libs/web/luasrc/view/cbi/network_netlist.htm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/web/luasrc/view/cbi/network_netlist.htm b/libs/web/luasrc/view/cbi/network_netlist.htm index 35e0ed354..8568ced44 100644 --- a/libs/web/luasrc/view/cbi/network_netlist.htm +++ b/libs/web/luasrc/view/cbi/network_netlist.htm @@ -47,9 +47,9 @@ </li> <% end end %> - <% if self.widget ~= "checkbox" and not self.nocreate then %> + <% if not self.nocreate then %> <li style="padding:0.25em 0"> - <input class="cbi-input-<%=self.widget or "radio"%>" onclick="cbi_d_update(this.id)" onchange="cbi_d_update(this.id)" type="radio"<%=attr("id", cbid .. "_new") .. attr("name", cbid) .. attr("value", "-") .. ifattr(not value, "checked", "checked")%> />   + <input class="cbi-input-<%=self.widget or "radio"%>" onclick="cbi_d_update(this.id)" onchange="cbi_d_update(this.id)"<%=attr("type", self.widget or "radio") .. attr("id", cbid .. "_new") .. attr("name", cbid) .. attr("value", "-") .. ifattr(not value, "checked", "checked")%> />   <div style="padding:0.5em; display:inline"> <label<%=attr("for", cbid .. "_new")%>><em><%:unspecified -or- create:%> </em></label> <input style="width:6em" type="text"<%=attr("name", cbid .. ".newnet")%> onfocus="document.getElementById('<%=cbid%>_new').checked=true" /> |