<% local form = ... require("viewfunctions") %> <% --[[ DEBUG INFORMATION io.write("

DEBUGGING

DEBUG INFO: CFE

") io.write(html.cfe_unpack(form)) io.write("
") --]] %>

EDIT PROPERTIES

<% local myform = form.edit local tags = {} for i=1,#myform do table.insert(tags,i) end displayinfo(myform,tags) %> <% local tags = {"cmdsave", "cmddelete", } local myform = form displayinfo(myform,tags) %> <% -- Add the field that holds the filename local myform = form.edit.filename if (type(myform) == "table") then io.write(html.form[myform.type](myform)) end local myform = form.edit.orgrecord if (type(myform) == "table") then io.write(html.form[myform.type](myform)) end local myform = form.edit.actiontype if (type(myform) == "table") then io.write(html.form[myform.type](myform)) end %>