How do you set a table column to an Image?

I’ve read through the wix code docs, and it talks about linking an image for the table background.
But I can’t figure out how to set the image on an individual column.
My third column in a row is the column of type image.
So here’s the code I tried:
$w(“#table1”).columns[2].image = “Image Link”;
or
$w(“#table1”).columns[2].background = “Image Link”;

Neither seemed to work for me.

I’ve also tried assigning the column to a collection key which contains the image, and it still didn’t display. So, any help would be appreciated.

I thing you are missing to set it like docs say. datafield or path and also the type of column to image. read the sample here how to set column as image.