luci/modules/luci-base/luasrc/view/cbi/dynlist.htm

29 lines
968 B
HTML
Raw Normal View History

<%+cbi/valueheader%>
2010-10-25 17:04:03 +00:00
<div>
2008-09-07 23:03:05 +00:00
<%
2008-09-07 23:50:58 +00:00
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 %>
2010-10-25 17:04:03 +00:00
</div>
<script type="text/javascript">
cbi_dynlist_init(
'<%=cbid%>', '<%=resource%>', '<%=self.datatype%>',
<%=tostring(self.optional or self.rmempty)%>,
'<%=url('admin/filebrowser')%>',
'<%=self.default_path and self.default_path%>'
<%- if #self.keylist > 0 then -%>, [{
2010-10-25 17:04:03 +00:00
<%- for i, k in ipairs(self.keylist) do -%>
<%-=string.format("%q", k) .. ":" .. string.format("%q", self.vallist[i])-%>
<%-if i<#self.keylist then-%>,<%-end-%>
<%- end -%>
}, '<%: -- custom -- %>']<% end -%>);
2010-10-25 17:04:03 +00:00
</script>
<%+cbi/valuefooter%>