Continuing the discussion from Using {{ data.variable }} in grid:
I have a requirement to display a set of pdf files in a data grid column of UiPath forms.
The path of these files are listed in an excel sheet. I read the excel and create a data table initially. Then I passed the data table into forms activity where I am able to display all the data in text fields in a data grid. I used a HTL element inside the data grid to display PDF, but unable to get the file path from input collection and display the PDF’s dynamically.
I tried <src=“{{data.Path}}”/> and < src=“{{row.Path}}”/> but both did not work. (Path is the column name in the input datatable)
Thank you