HJSON multiple inputs like in API connector etc

Guess this is probably one for @George when he returns from holiday but in case anyone else knows.

Can an input like this be implemented in a custom server connect module HJSON via an variables input.

image

1 Like

@Hyperbytes you can check the add job part in the hjson from my bull queues extension

{
            "name": "bindings",
            "optionName": "bindings",
            "key": "var",
            "keyValue": "value",
            "title": "API POST var's",
            "type": "grid",
            "defaultValue": {},
            "serverDataBindings": true,
            "columns": [
              {
                "field": "var",
                "caption": "Variable",
                "size": "30%",
                "editable": {
                  "type": "text"
                }
              },
              {
                "field": "value",
                "caption": "Value",
                "size": "70%",
                "editable": {
                  "type": "datapicker"
                }
              }
            ]
          },

Results in:

3 Likes

Perfect Tobais @tbvgl, works a treat. Huge thanks

imagea

1 Like