Is it possible to create a function-backed column with an URL as an output?

I have created a function which creates a column filled with web adresses based on object ID. I would like for these adresses to be clickable in my object table, so to be considered as URL. Is it possible ? Thank you in advance

I don’t think you can have a function backed URL, but you can create a dynamic URL in a workshop table.

  1. Click on the object table → add properties → URL

  2. You can then use a property from the object to create a dynamic URL

Hello bkaplan and thank you for your answer.

The problem with this is that from my understanding, my function-backed column is not really considered as an object property and has no ID.

Basically my object has no property “web adress” and I use a function to create a web adress column from a concatenation of a static string and one object property.

I want to have another column with this web adress as a clickable URL.

Thank you again !

Can the concatenation happen on the backend?

Is it just a concatenation of a static string and an object property? You should be able to add a URL column as follows.

For example, imagine you have an object A with object ID = abc123 and want to navigate to example.com/abc123. You could then configure this with example.com/{{object_id}}. Would this work?

1 Like

Hello bkaplan, it worked ! Thank you a lot for your help

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