I’m sorry for asking such a stupid question, but I can’t find a solution for several days and stuck with a simple task: I’d like to export links from KNIME table to html file.
Table to html works perfectly well, but I can’t make html links clickable. I tried several simple approaches and failed.
You can create a column containing an HTML link code using a String Manipulation node.
join("<a href=\"", $URL$, "\">", $Title$, "</a>")
Note that, you can not use the same JavaScript view of the Table View node directly to display the linked web content. But you can make sure the link opens in a new browser window by modifying the link target as shown below.
Thank you very much for your help! Your solution works perfectly well indeed!
The funnies thing is that I did try exactly the same approach, but it seems that I made a mistake and proceed further in search of more complex solution
If it is not too much, can you please also let me know how to make html file with working links…
With java tables it works great, but when I try exporting the table to html (I use Table to HTML), links are not working,
I will definately stay with the solution which you proposed, but having html file would be also very useful.
You are right the Table to HTML replaces ‘<’ symbols by ‘<’ because it intends to display the content of the table as it is (raw table content that is seen when opening the table in KNIME). It is a bit of a hack, but you can read back your html using a line reader and replace ‘<’ symbols with actual ‘<’.