Grid and loading CSV files

Hi,

I may have to resort to loading into the grid using CSV files.

from the documentation using,

    var  csvstr="11,12,13\n21,22,23\n31,32,33";
    grid.parse(csvstr,"csv");

Does anyone know if I can hyperlink the data , loaded via CSV .e.g the number 11 in the above string should hyperlinked to “www.google.com

Any idea of the format ?

Many thanks

In case of using “link” exCell
docs.dhtmlx.com/doku.php?id=dhtm … cells#link
you just need to place the formatted value in your csv.
For example:
var csvstr=“Real link^http://dhtmlx.com,12,13\n21,22,23\n31,32,33”;