mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-02-15 03:51:51 +00:00
35 lines
932 B
HTML
35 lines
932 B
HTML
<%+cbi/valueheader%>
|
|
|
|
<% 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 %>
|
|
|
|
<%+cbi/valuefooter%>
|