Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Jay on Jun 11, 2009 06:20
open dhtmlx forum
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:<function Name>("<Row Id>");
but i want the actual cell value for that tooltip not that one.
Answer posted by dhxSupport on Jun 11, 2009 08:00
You can use attached file instead of your dhtmlxgrid_excell_link.js 
Attachments (1)