Is there a way to detect a column click event?

I have a scenario where one of the columns is an image, once the image is clicked it should open up a dhtmlx window.
Is there a way to do this?
I am aware of the rowseletc event, but i am looking for a column select event.

rowselect provides index of column - so it can be used for such task

grid.attachEvent("onRowSelect", function(id, index){ if (index == SOME) document.location="details.html"; })