josebalius / ngReactGrid

A really fast Angular grid using the power of React to render. Based on ng-grid and jQuery DataTables.
http://josebalius.github.io/ngReactGrid/
MIT License
328 stars 47 forks source link

HTML content inside cell not rendering as HTML #71

Closed Progdom closed 9 years ago

Progdom commented 9 years ago

Hi I'm attempting to embed HTML content into several cells but I am having issues with it escaping the html into entities. How can this be accomplished? image

josebalius commented 9 years ago

@Progdom take a look at http://josebalius.github.io/ngReactGrid/examples/customCells.html you will have to either write Javascript in the form of React.DOM.a({href: "#"}, 'C') and return them in your cell renderer or use JSX instead.