summaryrefslogtreecommitdiffhomepage
path: root/libs/web
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2011-09-22 16:33:28 +0000
committerJo-Philipp Wich <jow@openwrt.org>2011-09-22 16:33:28 +0000
commit96dd29753cc2ada1d704fdcbd38385a4e685c463 (patch)
tree0af60b9760b66eac7a249573e0f9bc9ecabd9197 /libs/web
parent362c84480a24eaafca8973ba3ed63bb33ee1d009 (diff)
libs/web: cbi: provide a "last_child" property to allow for more layout control in form rendering
Diffstat (limited to 'libs/web')
-rw-r--r--libs/web/luasrc/cbi.lua6
1 files changed, 5 insertions, 1 deletions
diff --git a/libs/web/luasrc/cbi.lua b/libs/web/luasrc/cbi.lua
index 5dd57e2e9..5aa2f5a09 100644
--- a/libs/web/luasrc/cbi.lua
+++ b/libs/web/luasrc/cbi.lua
@@ -211,7 +211,9 @@ end
-- Render the children
function Node.render_children(self, ...)
+ local k, node
for k, node in ipairs(self.children) do
+ node.last_child = (k == #self.children)
node:render(...)
end
end
@@ -805,7 +807,9 @@ function AbstractSection.render_tab(self, tab, ...)
assert(tab and self.tabs and self.tabs[tab],
"Cannot render not existing tab %q" % tostring(tab))
- for _, node in ipairs(self.tabs[tab].childs) do
+ local k, node
+ for k, node in ipairs(self.tabs[tab].childs) do
+ node.last_child = (k == #self.tabs[tab].childs)
node:render(...)
end
end