3.2.0

insert a image in a table column

Hi,
I want to insert an image into HTML table. I am using a code similar to the following to create a HTML table.

var table = new AW.HTML.TABLE;
var row = new AW.HTML.TR;
var cell = new AW.HTML.TD;
cell.setContent("html", "some text");
row.setContent("cell", cell);
table.setContent("row", row);
table.setAttribute("border", "1");
document.write(table);

Instead of having text in one cell, how to add an image?
cell.setContent("html", "some text");
I tried using setAttribute("image", "test.gif") and so on, but it did not work. Also I would need an event handler when that image is clicked.

Can you please let me know if we can have this capability in AW.HTML.TD and AW.HTML.TABLE?

Thanks

VJ
March 25,
I think I got it.
var img = new AW.HTML.IMG;
img.setAttribute("src", "/images/trash.gif");
img.setAttribute("onclick", "alert('working')");
cell.setContent("img", img);

Thanks
VJ
March 25,

This topic is archived.

See also:


Back to support forum