luci-base: rework dynamic list template
Commit 7c7821833
("luci-base, themes: rework dynlist and dropdown widgets")
changed the way we initialize dynamic lists on client side, avoiding the
need for pre-rendering the items on the server side.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
This commit is contained in:
parent
e33a367158
commit
10838c3660
1 changed files with 2 additions and 16 deletions
|
@ -6,22 +6,8 @@
|
||||||
self.keylist, self.vallist,
|
self.keylist, self.vallist,
|
||||||
self.datatype, self.optional or self.rmempty
|
self.datatype, self.optional or self.rmempty
|
||||||
})) ..
|
})) ..
|
||||||
|
attr("data-values", luci.util.serialize_json(self:cfgvalue(section))) ..
|
||||||
ifattr(self.size, "data-size", self.size) ..
|
ifattr(self.size, "data-size", self.size) ..
|
||||||
ifattr(self.placeholder, "data-placeholder", self.placeholder)
|
ifattr(self.placeholder, "data-placeholder", self.placeholder)
|
||||||
%>>
|
%>></div>
|
||||||
<%
|
|
||||||
local vals = self:cfgvalue(section) or {}
|
|
||||||
for i=1, #vals + 1 do
|
|
||||||
local val = vals[i]
|
|
||||||
if (val and #val > 0) or (i == 1) then
|
|
||||||
%>
|
|
||||||
<input class="cbi-input-text" value="<%=pcdata(val)%>" data-update="change" type="text"<%=
|
|
||||||
attr("id", cbid .. "." .. i) ..
|
|
||||||
attr("name", cbid) ..
|
|
||||||
ifattr(self.size, "size") ..
|
|
||||||
ifattr(i == 1 and self.placeholder, "placeholder", self.placeholder)
|
|
||||||
%> /><br />
|
|
||||||
<% end end %>
|
|
||||||
</div>
|
|
||||||
<%+cbi/valuefooter%>
|
<%+cbi/valuefooter%>
|
||||||
|
|
Loading…
Reference in a new issue