Pass Parameter to form elements

It seems like we can not pass parameters to form elements:

in Action Center:

image

The create Form Task is also unable to load form from file:

image

@some.one

Did you check refresh on change

Cheers

1 Like

As the error mentions did we check with filepath and it’s format @some.one

That worked for the content however, I was not able to get the value in the attribute:

{
  "label": "Product Image",
  "tag": "img",
  "attrs": [
    {
      "attr": "src",
      "value": "{{data.ImageLink}}"
    }
  ],
  "refreshOnChange": true,
  "key": "html",
  "type": "htmlelement",
  "input": false,
  "tableView": false
}

The html generated in action center:

<img ref="html" class="">

the src attribute is not present. when I set the value of the attribute to data.ImageLink without the {{}} then the following html is generated:

<img src="data.ImageLink" ref="html" class="">

Yes I did and I think you can easly reproduct it