addRow html-allowed text

A want intagrate DHTMXGrid with Cake-framework. In cake exist method $ajax->link(…) , this return html-text. I need insert this in cell, but don’t find in API, how I can make this. Can I add HTML-allowed text using addRow()? And what type of cell must I use in this way?

Can I add HTML-allowed text using addRow()? And what type of cell must I use in this way?

All default excells accept HTML as values so the next command is fully legal
    grid.addRow(1,[1,2,“Link”,4]);
The same in XML may look as
   
       1       2       <![CDATA[Link]]>       4
   


There are special excell types which are not accept HTML  ( they are safe for usage HTML specific chars , such as & > < ) - rotxt,edtxt,txttxt,cotxt