Bug/Feature: No way to create a list of strings in the post's properties.

Bug/Feature: No way to create a list of strings in the post's properties.

ubunibme
Enthusiast Enthusiast
571 Views
3 Replies
Message 1 of 4

Bug/Feature: No way to create a list of strings in the post's properties.

ubunibme
Enthusiast
Enthusiast

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:


properties = {
   ... ,
   config : ["Config-A","Config-B","Config-C"],
   ...
};
 
Should create a drop down list with:
Config-A
Config-B
Config-C
 
and set properties.config to whatever the user chooses.  Without this, the user needs to type in a specific sting, which is asking for problems, or type in a number, or set multiple booleans, which is asking for more problems.
 
I would put this in the 'ideas' section .. but since it effects the narrow slice of post writers would probably  get lost in the noise.
 
postProcessWindow.JPG
 
 
572 Views
3 Replies
Replies (3)
Message 2 of 4

AchimN
Community Manager
Community Manager

This is not supported at the moment but definitely on the wish list.



Achim.N
Principal Technology Consultant
0 Likes
Message 3 of 4

Anonymous
Not applicable

Was this feature added??

This would be very useful for me and my team!

0 Likes
Message 4 of 4

jswickJ9PWC
Advocate
Advocate

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"}

...

}

0 Likes