dhtmlxTreeGrid link problem

I have a code like this;



—ASP file

mygrid=new D(‘tlist’);

mygrid.setImagePath(“includes/dhtmlx/imgs/csh_winstyle/”);

mygrid.setHeader("#text_filter,#cspan,#cspan");

//mygrid.attachHeader("#text_filter,#cspan");

mygrid.setInitWidths(“820,33,20”);

mygrid.setColAlign(“left,center,center”);

mygrid.setColTypes(“tree,ch,link”);

mygrid.setColSorting(“str,str,str”);

mygrid.attachEvent(“onCheckbox”,doOnCheck);

mygrid.attachEvent(“onRowDblClicked”,doDblClick);

mygrid.init();

mygrid.bD(“list.asp”);



function doDblClick(){

    return false;

}



function doOnCheck(rowId,cellInd,state){



    var strItems = document.tform.items.value ;

    

    if (state) {

        strItems = strItems + rowId + “,” ;

    } else if (!state) {

        strDel = “,” + rowId + “,”;

        strItems = strItems.replace(strDel, “,”);

    }

    

    document.tform.maddeler.items= strItems;

}



—XML file





itemName

0

R^RRead.asp^_blank





I got dhtmlxgrid_excell_link.js included. There no xml error but stil not working. When i delete third cell information from xml, item listed but with third cell information it doesnt…



Please some body help me!

Thanks…

We tested your code and didn’t find any errors. Third column contain link as expected. What is expected behaviour for you?

You can see the problem at the link below

senergun.com/tg/liste.xml

I can not see the items with link. Thanks…