Question

Help with FME Flow application creating linked HTML buttons?

  • 15 March 2024
  • 1 reply
  • 18 views

Badge +2

Hi FME Community,

 

So I’ve created a basic FME Flow application using a script that simply lets you upload two excel files then generates a html report comparing the two.

 

I’m wanting to improve this functionality where there's a dedicated library of files (.csv) from cloud drive (One Drive) as buttons or drop down selection menu. Requiring only to upload the comparison .csv file.

 

Would I have to achieve this by writing a python or java script in a custom HTML in a HTML report generator?


1 reply

Userlevel 5
Badge +26

If that library of files on OneDrive is static you can put the names in a Choice parameter and have the user select from that, then use a FeatureReader to read in that file (constructing the filename based on the parameter value). Alternatively, if the filename is always in some way related to the comparison .csv you can even do away with that parameter alltogether.

Reply