luci-base: form.js: forward section ID in CBISectionValue methods
This is useful for custom subclasses that want to perform conditional
rendering of contents, depending on the parent section ID.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
(cherry picked from commit f0a0d28fdd
)
This commit is contained in:
parent
750572d630
commit
f044d2a4a8
1 changed files with 4 additions and 4 deletions
|
@ -4074,22 +4074,22 @@ var CBISectionValue = CBIValue.extend(/** @lends LuCI.form.SectionValue.prototyp
|
|||
|
||||
/** @override */
|
||||
load: function(section_id) {
|
||||
return this.subsection.load();
|
||||
return this.subsection.load(section_id);
|
||||
},
|
||||
|
||||
/** @override */
|
||||
parse: function(section_id) {
|
||||
return this.subsection.parse();
|
||||
return this.subsection.parse(section_id);
|
||||
},
|
||||
|
||||
/** @private */
|
||||
renderWidget: function(section_id, option_index, cfgvalue) {
|
||||
return this.subsection.render();
|
||||
return this.subsection.render(section_id);
|
||||
},
|
||||
|
||||
/** @private */
|
||||
checkDepends: function(section_id) {
|
||||
this.subsection.checkDepends();
|
||||
this.subsection.checkDepends(section_id);
|
||||
return CBIValue.prototype.checkDepends.apply(this, [ section_id ]);
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in a new issue