Skip to content
Snippets Groups Projects
dropDownProcess.js 419 B
import("Context_lib");
import("system.translate");
import("system.db");
import("system.result");
import("system.vars");
import("Attribute_lib");
import("Sql_lib");

var attributeId = vars.get("$field.AB_ATTRIBUTE_ID");
var attrType = vars.get("$field.ATTRIBUTE_TYPE");

var res = null;
if (!AttributeTypeUtil.useLookup(attrType))
    res = AttributeUtil.getPossibleListValues(attributeId, attrType);
result.object(res);