Skip to content

How to use Image column with a URL #724

Discussion options

You must be logged in to vote

We don’t currently support displaying just URLs directly in the Image column itself. We’re looking into how we can support other formats for storing images.

Temporary workaround: use Derivative columns

However, you can create a Derivative column (if you have Rowy Run installed). Derivative columns display a value derived from another column’s value.

When you create a Derivative column, change the config as follows:

  1. Set the Listener fields to be the URL column.
  2. Change the Output field type to Image.
  3. Set the Derivative script to this:
    const derivative: Derivative = async ({ row, ref, db, storage, auth }) => {
      return [{ downloadURL: row.URL_FIELD_KEY }]
    }
    Make sure to change URL_FIELD_KEY

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@KKimj
Comment options

Answer selected by notsidney
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants