hi,
i have a problem in dhtmlxgrid, on click of a particular cell i need to highlight the particular row and column with some border color,
see the screen shot img149.imageshack.us/my.php?imag … estdw8.png
thanks in advance
Grid doesn’t support such selection mode, but you can try code similar to next
mygrid.attachEvent(“onRowSelect”,function(id,ind){
mygrid.forEachRow(function(id){
mygrid.setCellTextStyle(id,ind,“border:5px solid red;”);
})
mygrid.setRopTextStyle(id,“border:5px solid red;”);
});