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
383 B
HTML
12 lines
383 B
HTML
<%+cbi/valueheader%>
|
|
<div<%=attr("data-ui-widget", luci.util.serialize_json({
|
|
"Checkbox", self:cfgvalue(section) or self.default, {
|
|
id = cbid,
|
|
name = cbid,
|
|
readonly = self.readonly,
|
|
hiddenname = "cbi.cbe." .. self.config .. "." .. section .. "." .. self.option,
|
|
value_enabled = self.enabled or 1,
|
|
value_disabled = self.disabled or 0
|
|
}
|
|
}))%>></div>
|
|
<%+cbi/valuefooter%>
|