¿como puedo poner una imagen en un campo url en una grid?

TENGO UNA BASE DE DATOS CON UN CAMPO QUE ALMACEN LAS URL, PERO AL MOMENTO DE PONERLAS EN UNA GRID ES MUY EXTENSO EN LA PANTALLA, ALGUIEN ME PUEDE AYUDAR A QUE SOLO SE VEA UNA IMAGEN Y NO TODA LA URL.
GRACIAS. :grinning:

Create a field of type text

In the onRecord event assign the html code to display the image to the text field

Yo lo hice, pero no logro que funcione, me puede apoyar con un ejemplo se lo agradecería bastante.

Tengo un campo en mi base de datos de tipo texto donde almaceno una url, en la grid en el evento onrecord le agrego el siguiente codigo:

if(!empty({CAMPO_URL}))
{
sc_link(CAMPO_URL,{CAMPO_URL},“Vamos”,"_blank",500,800);
{CAMPO_URL}="<img src=’‘http://www.mipagina.com/images/check_16.png ’>";
}

Y cuando lo ejecuto si me aparece la imagen, pero no me lleva a ninguna pagina, lo que me aparece es este mensaje:
The requested URL /scriptcase/app/mipagina/grid_aplicacion/www.otrapagina.com was not found on this server.

Y además el ultimo registro no me aparece nada de imagen.

Alguien me puede ayudar por favor.

Gracias.