cells and CDATA

Hello!

Why isn’t it possible to do this:

mygrid.cells(mygrid.getRowId(i),2).setValue(’<![CDATA[<a href=’’.BASEURL.‘managing_bustrip_busses/?pbt=’.$busTrip[‘busTripID’].’’>’.LBL_ALOCATE.’</a>]]>’);
nothing changed in the cell

CDATA sections necessary only when data added from XML, when it added by js command you can use plain HTML

mygrid.cells(mygrid.getRowId(i),2).setValue(’<a href=’’.BASEURL.‘managing_bustrip_busses/?pbt=’.$busTrip[‘busTripID’].’’>’.LBL_ALOCATE.’’);