diff options
author | Ted Trask <ttrask01@yahoo.com> | 2014-10-01 15:44:47 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2014-10-01 15:44:47 +0000 |
commit | 320c57df707590303f2baeab8d0737fd121b4fae (patch) | |
tree | 6b0bab2b54114b78419bd2e7a6aecebde364b9f3 /kamailio-viewtable-html.lsp | |
parent | 04ead45947e1059d154628838cb17377f4949d57 (diff) | |
download | acf-kamailio-320c57df707590303f2baeab8d0737fd121b4fae.tar.bz2 acf-kamailio-320c57df707590303f2baeab8d0737fd121b4fae.tar.xz |
Replace temporary session workaround for viewtable action with redir with GET parm in HTML view
Diffstat (limited to 'kamailio-viewtable-html.lsp')
-rw-r--r-- | kamailio-viewtable-html.lsp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/kamailio-viewtable-html.lsp b/kamailio-viewtable-html.lsp index 0d08ec5..47e5aa4 100644 --- a/kamailio-viewtable-html.lsp +++ b/kamailio-viewtable-html.lsp @@ -21,6 +21,8 @@ }); </script> +<% local redir = cfe({ type="hidden", value=page_info.orig_action.."?table="..html.url_encode(form.value.table.value) }) %> + <% htmlviewfunctions.displaycommandresults({"deletetableentry", "updatetableentry"}, session) %> <% htmlviewfunctions.displaycommandresults({"createtableentry"}, session, true) %> @@ -36,7 +38,6 @@ <% end %> </tr> </thead><tbody> -<% local redir = cfe({ type="hidden", value=page_info.orig_action }) %> <% local table = cfe({ type="hidden", value=form.value.table.value }) %> <% local id = cfe({ type="hidden" }) %> <% for i,tableentry in ipairs(form.value.entries.value) do %> @@ -48,7 +49,7 @@ <% htmlviewfunctions.displayitem(cfe({type="link", value={table=table, id=id, redir=redir}, label="", option="Update", action="updatetableentry"}), page_info, -1) %> <% end %> <% if viewlibrary.check_permission("deletetableentry") then %> - <% htmlviewfunctions.displayitem(cfe({type="form", value={table=table, id=id}, label="", option="Delete", action="deletetableentry", class="deletetableentry"}), page_info, -1) %> + <% htmlviewfunctions.displayitem(cfe({type="form", value={table=table, id=id, redir=redir}, label="", option="Delete", action="deletetableentry", class="deletetableentry"}), page_info, -1) %> <% end %> </td> <% end %> @@ -65,5 +66,5 @@ <% htmlviewfunctions.displaysectionend(header_level) %> <% if page_info.action == "viewtable" and viewlibrary and viewlibrary.dispatch_component and viewlibrary.check_permission("createtableentry") then - viewlibrary.dispatch_component("createtableentry", {table=form.value.table.value}) + viewlibrary.dispatch_component("createtableentry", {table=form.value.table.value, redir=redir.value}) end %> |