Skip to content
Snippets Groups Projects
onActionProcess.js 298 B
Newer Older
import("system.neon");
import("Context_lib");

openAdminView();

function openAdminView (pViewName)
{
    var context = ContextUtils.getCurrentContextId();
    if (!pViewName)
        pViewName = context + "Admin_view"
    neon.openContext(context, pViewName, id, neon.OPERATINGSTATE_VIEW, null);
}