DHTMl GRID

HI

I am using dhtmlx grid and there are some column of type “link” and i need cells value for some operations. I am using getTitle() (That is supposed to return text part of cell) function to get the value of cell (of type link) but it return the string like “javascript:myFunction()”.

Definition for this function is as follows (in dhtmlx.js)



eXcell_link.prototype.getTitle = function(){

var z=this.cell.firstChild;

return ((z&&z.tagName)?z.getAttribute(“href”):"")

};



Regards

Umair Tariq

Xeeonix Tech.

and i need cells value for some operations
To get cell value you should modify getValue() method. Please find more information here dhtmlx.com/docs/products/dhtmlxG … #grid_cexc