Hi Benjamin,
If I understand correctly you want to show an image based on a link like so
https://www.website.com/image.png
That data would be stored in a varchar column image_url which is a simple text control.
Id then hide that column, and show a calculated field with an HTML control.
That control would have the content calculated like so:
CONCAT(
'<img src="',
t1.image_url,
'" height="50">'
) AS image_preview
Note that I’ve specified the height hardcoded, this would be related to the height of your grid rows.
You could show the HTML field in the grid, and the text field in the form. You could also change which field the user sees in the form depending on whether they are edit mode or not.
Would this solve your issue?
Kind regards,
Tim de Lang