Search code examples
javascriptslickgrid

How to put HTML into Slickgrid cell?


When I put <a href="#">Click</a> into slickgrid, I see the actual code "<a href="#">Click</a>", whereas I expect the link to be rendered.

I know I can do it by subscribing click event but is it restricted thing in SlickGrid?


Solution

  • Write a custom formatter:

    function myFormatter(row, cell, value, columnDef, dataContext) {
      return "<a href='#'>Click</a>";
    }
    

    and specify it in the column definition.