Skip to content
Snippets Groups Projects
dropDownProcess.js 462 B
import("system.result");
import("Keyword_lib");
import("KeywordRegistry_basic");

//This dropDownProcess exists, even though the fieldState is READONLY.
//-->So we can use it when using the filter
var res = KeywordUtils.getEntryNamesByContainer($KeywordRegistry.contactPosition()).map(function (e){
    return [e, e]; //currently the first column is ID, second view value - which is the same because there is no ID for keyword-containers
});

result.object(res);