2018-01-23 14:36:03 +00:00
|
|
|
<%+cbi/valueheader%>
|
2019-07-12 16:27:38 +00:00
|
|
|
|
|
|
|
<% local choices = self:choices()
|
|
|
|
if choices then %>
|
|
|
|
<div<%=attr("data-ui-widget", luci.util.serialize_json({
|
|
|
|
"Combobox", self:cfgvalue(section) or self.default, choices, {
|
|
|
|
id = cbid,
|
|
|
|
name = cbid,
|
|
|
|
size = self.size,
|
|
|
|
sort = self.keylist,
|
|
|
|
datatype = self.datatype,
|
|
|
|
optional = self.optional or self.rmempty,
|
|
|
|
readonly = self.readonly,
|
|
|
|
maxlength = self.maxlength,
|
|
|
|
placeholder = self.placeholder,
|
|
|
|
custom_placeholder = self.combobox_manual
|
|
|
|
}
|
|
|
|
}))%>></div>
|
|
|
|
<% else %>
|
|
|
|
<div<%=attr("data-ui-widget", luci.util.serialize_json({
|
|
|
|
"Textfield", self:cfgvalue(section) or self.default, {
|
|
|
|
id = cbid,
|
|
|
|
name = cbid,
|
|
|
|
size = self.size,
|
|
|
|
datatype = self.datatype,
|
|
|
|
optional = self.optional or self.rmempty,
|
|
|
|
password = self.password,
|
|
|
|
readonly = self.readonly,
|
|
|
|
maxlength = self.maxlength,
|
|
|
|
placeholder = self.placeholder
|
|
|
|
}
|
|
|
|
}))%>></div>
|
|
|
|
<% end %>
|
|
|
|
|
2018-01-23 14:36:03 +00:00
|
|
|
<%+cbi/valuefooter%>
|