Categories | Question details Back To List | ||
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 Answer posted by Support on Sep 01, 2008 02:49 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.'</a>'); |