HTML link in Uipath Form

Hello,

Please refer to the image below My bot converts the data table to html and displays as in the below image

.
I should make the hyperlink a clickable link and open it in the browser.

Thanks in advance

Hi @RK_0 ,

If you’re converting the Datatable to HTML Table, and you would want the values in Hypertext Link column to be a Clickable link then you would need to use <a> tag for this purpose.

Let us know if you are using your own methods to convert to HTML Table or if you’re using a custom activity.

We might need to switch to creating the Conversion Snippet and add the part of using the tag mentioned.

Hi,

Thanks for the response
Yes, I’m using html tag . I have attached the html method I have used in the process for conversion. Please go through it once.

DataTableToHtmlText2 - Copy.xaml (16.5 KB)
Regards,
RK

in your xaml we do find:
grafik

for the column with the link you need to generate a content like:

<td><a href='YourUrl'>YourLinkText</a></td>

1 Like

Hi @ppr

Thanks for the suggestion
I will try this and let you know.

@RK_0 ,

Check the Modified workflow below :
DataTableToHtmlText2 - Copy.xaml (18.4 KB)

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.