Skip to content
Snippets Groups Projects
stateProcess.js 534 B
import("system.result");
import("system.vars");
import("system.neon");
import("DocumentTemplate_lib");

if (vars.get("$sys.recordstate") != neon.OPERATINGSTATE_VIEW && 
    (vars.get("$context.currentTemplateType") == DocumentTemplate.types.EML
      || vars.get("$context.currentTemplateType") == DocumentTemplate.types.HTML)) // TODO: invisible for html as there are problems with images which are removed by the html-editor
{
    result.string(neon.COMPONENTSTATE_INVISIBLE);
}
else
    result.string(neon.COMPONENTSTATE_EDITABLE);