properties = {
... ,
config : ["Config-A","Config-B","Config-C"],
...
};
I feel this is a bug: Looks like there is *no* way to create a drop-down list in the user properties in the 'PostProcess' window. For instance, code such as:
Was this feature added??
This would be very useful for me and my team!
Not sure if you figured this out or not but you can add it to the post now using the following:
propertyDefinitions = {
...
theMatrixhasYou: {
title: "Welcome Neo",
description: "Will you choose the blue pill or the red pill?",
type: "enum",
values: [
{title: "Blue", id: "blue"},
{title: "Red", id: "red"},
{title: "Waffle", id: "noDecision"}
],
value: "red",
scope: "post"}
...
}