Using Values as Parameters—can't use select or have spaces in names?

So, I’m trying to use the whole Using Values as Parameters feature, and I’ve managed to get it to work, but I found what I think to be a bug. You cannot currently use a select type to pick a set of values. I used the same code below as a choose type, and it worked fine. Would it be possible to add a select type to be able to be used to group a set of values?

{
    "cat" : {
      "label": "Category Type",
      "type": "select",
      "initial" : "Restoration",
      "options": [
        {
          "value": {
            "color": "#a6380a",
            "title": "Foundations for Victory"
          },
          "label": "Foundations"
        },
        {
          "value": {
            "color": "#f26321",
            "title": "Areas of Restoration"
          },
          "label": "Restoration"
        }
      ]
    },
    "title" : {
      "type" : "text",
      "label" : "Page Title",
      "initial" : "{{dc:post:title}}"
    },
    "bg-image" : {
      "type" : "image",
      "label" : "Background Image",
      "initial" : "3952:full"
  }
}

Hello @bobbybosler,

Thanks for writing in!

You can use choose or select.

As for the parameter names, it should be one word only. There should NOT be a space or dash character. Only alphanumeric characters for the parameter names.

Best Regards.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.