From d051bf48fb53481082b12a6778e7c7863f1979ca Mon Sep 17 00:00:00 2001 From: Ted Trask Date: Wed, 23 Apr 2014 16:12:07 +0000 Subject: Changes to use new htmlviewfunctions functions --- provisioning-listgroups-html.lsp | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'provisioning-listgroups-html.lsp') diff --git a/provisioning-listgroups-html.lsp b/provisioning-listgroups-html.lsp index 9d8268b..b6435af 100644 --- a/provisioning-listgroups-html.lsp +++ b/provisioning-listgroups-html.lsp @@ -25,7 +25,7 @@ html = require("acf.html") <% htmlviewfunctions.displaycommandresults({"deletegroup", "editgroup"}, session) %> <% htmlviewfunctions.displaycommandresults({"creategroup"}, session, true) %> -

Groups

+<% local header_level = htmlviewfunctions.displaysectionstart(view, page_info) %> @@ -34,14 +34,17 @@ html = require("acf.html") +<% local group_id = cfe({ type="hidden", value="" }) %> +<% local redir = cfe({ type="hidden", value=page_info.orig_action }) %> <% for k,v in ipairs( view.value ) do %> @@ -58,6 +61,7 @@ html = require("acf.html") <% if #view.value == 0 then %>

No groups found

<% end %> +<% htmlviewfunctions.displaysectionend(header_level) %> <% if viewlibrary and viewlibrary.dispatch_component and viewlibrary.check_permission("creategroup") then viewlibrary.dispatch_component("creategroup") -- cgit v1.2.3
ActionSequence
- <% if viewlibrary.check_permission("deletegroup") then %> - <%= html.link{value=page_info.script..page_info.prefix..page_info.controller.."/deletegroup?submit=true&group_id="..v.group_id, label="Delete ", class="deletegroup"} %> - <% end %> + <% group_id.value = v.group_id %> <% if viewlibrary.check_permission("editgroup") then %> - <%= html.link{value=page_info.script..page_info.prefix..page_info.controller.."/editgroup?group_id="..v.group_id.."&redir="..page_info.orig_action, label="Edit "} %> + <% htmlviewfunctions.displayitem(cfe({type="link", value={group_id=group_id, redir=redir}, label="", option="Edit", action="editgroup"}), page_info, -1) %> + <% end %> + <% if viewlibrary.check_permission("deletegroup") then %> + <% htmlviewfunctions.displayitem(cfe({type="form", value={group_id=group_id}, label="", option="Delete", action="deletegroup", class="deletegroup"}), page_info, -1) %> <% end %> <%= html.html_escape(v.name) %>