2008-08-18 23:26:06 +00:00
|
|
|
<%#
|
|
|
|
LuCI - Lua Configuration Interface
|
|
|
|
Copyright 2008 Steven Barth <steven@midlink.org>
|
2010-04-27 00:27:37 +00:00
|
|
|
Copyright 2008-2010 Jo-Philipp Wich <xm@subsignal.org>
|
2008-08-18 23:26:06 +00:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
$Id$
|
|
|
|
|
|
|
|
-%>
|
|
|
|
<%+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 {}
|
2008-08-18 23:26:06 +00:00
|
|
|
for i=1, #vals + 1 do
|
|
|
|
local val = vals[i]
|
2010-11-20 18:08:18 +00:00
|
|
|
if val and #val > 0 then
|
2008-08-18 23:26:06 +00:00
|
|
|
%>
|
2010-10-30 17:21:27 +00:00
|
|
|
<input class="cbi-input-text" value="<%=pcdata(val)%>" onchange="cbi_d_update(this.id)" type="text"<%=
|
|
|
|
attr("id", cbid .. "." .. i) .. attr("name", cbid) .. ifattr(self.size, "size") ..
|
|
|
|
ifattr(i == 1 and self.placeholder, "placeholder", self.placeholder)
|
|
|
|
%> /><br />
|
2010-11-20 18:08:18 +00:00
|
|
|
<% end end %>
|
2010-10-25 17:04:03 +00:00
|
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
|
|
cbi_dynlist_init('<%=cbid%>');
|
|
|
|
<% if self.datatype then -%>
|
2008-08-18 23:26:06 +00:00
|
|
|
<% if #self.keylist > 0 then -%>
|
2010-10-25 17:04:03 +00:00
|
|
|
cbi_combobox_init('<%=cbid .. "." .. i%>', {
|
|
|
|
<%- 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 -%>
|
|
|
|
}, '<%- if not self.rmempty and not self.optional then -%>
|
|
|
|
<%-:cbi_select-%>
|
|
|
|
<%- end -%>', '<%: -- custom -- %>');
|
2008-08-18 23:26:06 +00:00
|
|
|
<% end -%>
|
2010-10-25 17:04:03 +00:00
|
|
|
<% for i=1, #vals + 1 do -%>
|
2010-11-16 18:05:17 +00:00
|
|
|
cbi_validate_field('<%=cbid%>.<%=i%>', <%=tostring((self.optional or self.rmempty) == true or i > #vals)%>, '<%=self.datatype%>');
|
2010-10-25 17:04:03 +00:00
|
|
|
<%- end %>
|
2010-04-27 00:27:37 +00:00
|
|
|
<% end -%>
|
2010-10-25 17:04:03 +00:00
|
|
|
</script>
|
2008-08-18 23:26:06 +00:00
|
|
|
<%+cbi/valuefooter%>
|