Merge pull request #563 from cshore/pull-request-app-uhttpd
[project/luci.git] / modules / luci-base / luasrc / view / cbi / mvalue.htm
1 <% local v = self:valuelist(section) or {} -%>
2 <%+cbi/valueheader%>
3 <% if self.widget == "select" then %>
4         <select class="cbi-input-select" multiple="multiple" onclick="cbi_d_update(this.id)" onchange="cbi_d_update(this.id)"<%= attr("name", cbid) .. ifattr(self.size, "size") %>>
5         <% for i, key in pairs(self.keylist) do -%>
6                 <option<%= attr("value", key) .. ifattr(luci.util.contains(v, key), "selected", "selected") %>><%=striptags(self.vallist[i])%></option>
7         <%- end %>
8         </select>
9 <% elseif self.widget == "checkbox" then
10         local c = 0;
11         for i, key in pairs(self.keylist) do
12         c = c + 1
13 %>
14         <input class="cbi-input-checkbox" type="checkbox" onclick="cbi_d_update(this.id)" onchange="cbi_d_update(this.id)"<%= attr("id", cbid..c) .. attr("name", cbid) .. attr("value", key) .. ifattr(luci.util.contains(v, key), "checked", "checked") %> />
15         <label<%= attr("for", cbid..c) %>><%=self.vallist[i]%></label><% if not self.oneline then %><br /><% else %> <% end %>
16 <% if c == self.size then c = 0 %><br />
17 <% end end %>
18 <% end %>
19 <%+cbi/valuefooter%>