i have a jqgrid treegrid cell and i want to have content inside of a cell that has links and other html formatting.
is this possible with jqgrid treegrid ? I don\
A better way to achieve this is by using the custom formatter, just write a simple function which adds the HTML you need, like this:
function leadForm(cellvalue,options,rowObject){
return ''+cellvalue+''
}
and link it to the cell in the colmodel, as explained in the reference
link to reference: http://www.trirand.com/jqgridwiki/doku.php?id=wiki:custom_formatter