How to configure links in JSON Object

Hi All,

we can achieve links or urls in cells by doing as follows in XML.

100 A Time to Kill^index.jsp?method=test^_self

please do update me on how to achieve the same link concept in JSON object.

    var js={
rows:[
    { id:1001,
 data:[
      "100",
      "A Time to Kill",]}]}

Thanks and Regards
Tirupathi.Rao

Have you tried the following:

var js={
rows:[
{ id:1001,
data:[
“100”,
“A Time to Kill^index.jsp?method=test^_self”]}]}

I already tried this way but it is not happening…

Following code works for me at local example:

var data={ rows:[ { id:1001, data:[ "100", "A Time to Kill^index.jsp?method=test^_self", "John Grisham", "12.99", "1", "05/01/1998"] } ] }

Please check if you have attached dhtmlxgrid_excell_link.js file to your page