is it possible to have html inside of a jqgrid treegrid cell

前端 未结 3 686
臣服心动
臣服心动 2020-11-29 11:48

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\

3条回答
  •  清酒与你
    2020-11-29 12:23

    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

提交回复
热议问题