Guyz,
I require to display a model dialog upon clicking a cell inside dhtmlgrid.I tried with writing down a funtion for the onlclick event.But some how the method is not working.See the code below.any help,greatly appreciated.
Grid.attachEvent("onClick",doOnRowclick());
function doOnRowclick(cellIndex)
{
if(cellIndex == 3)
{
var test = new Array();
var newValues=window.showModalDialog("<%=context%>/test.do?pageAction=initAct",test,"dialogWidth:398px;dialogHeight:378px;help:no;status:no");
}
}