Tooltips

Hi,
    I am creating column link in grid my code is

var cellValue;
        var rowId;
        var rowLength = this.gridObj.getRowsNum();
        var colIdx = this.gridObj.getColIndexById(colId);
       
       
        for ( var int = 0; int < rowLength; int++) {
            rowId= this.gridObj.getRowId(int);
          
            cellValue = this.getCellValue(rowId,colId);
            cellValue = cellValue+"^javascript:"+callfunc+"(""+rowId+"");^_self";
           
            this.gridObj.setCellExcellType(rowId,colIdx,‘link’);
            this.setCellValue(rowId,colId,cellValue);
        }

Its work fine but in tooltip its show javascript:("");
but i want the actual cell value for that tooltip not that one.

You can use attached file instead of your dhtmlxgrid_excell_link.js
dhtmlxgrid_excell_link_mod.zip (958 Bytes)