How to display a specific text in an url field in a grid

In a grid I have a field that is an url (let’s say https://www.youtube.com for example).
I would like to display ‘click here’ instead of the link (and then, of course, link to the correct url).
I don’t know how to do that .
Somebody could help ?
Thanks
Sylvain

You can use field type image html with an image and link to a blank app

Add a new field to your gird… call it SELECT
//
On the On Record event put this
//
{SELECT} = “<a href=“javascript:void%200” class=‘scButton_small’ onclick=“window.location.href=‘http://somewebsite.html’+’?someurlvalue=”.{field_var}.”’;" > CLICK HERE";
///

1 Like

Thanks. I’ll will try that.

1 Like

Thanks for your quick reply.

1 Like