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.
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.
@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:
Perfect Tobais @tbvgl, works a treat. Huge thanks
a