popup window

Hi

I am using the dhtmlx grid and i need a pop up window to open when i click on the Country colunm. I am using this code Please help me out by sending the example of popup window on gridcell click







        































Thanks in advance


Hello,


possibly something as follows can be used:


grid.attachEvent(“onRowSelect”,function(row_id,column_index){


if(column_index==2) window.open(…)


})