Do not render standard widgets like checkboxes, select boxes, text input fields etc. on the server side anymore but utilize the ui.js primitives instead. This avoids logic duplication between server side cbi templates and JS widgets in the future. Signed-off-by: Jo-Philipp Wich <jo@mein.io>
12 lines
336 B
HTML
12 lines
336 B
HTML
<%+cbi/valueheader%>
|
|
<div<%=attr("data-ui-widget", luci.util.serialize_json({
|
|
"DynamicList", self:cfgvalue(section), self:choices(), {
|
|
name = cbid,
|
|
size = self.size,
|
|
sort = self.keylist,
|
|
datatype = self.datatype,
|
|
optional = self.optional or self.rmempty,
|
|
placeholder = self.placeholder
|
|
}
|
|
}))%>></div>
|
|
<%+cbi/valuefooter%>
|