Trying to create clickable link inside json string... in column.render:
render: function (ui) {
data = JSON.parse(ui.cellData)
a = data.test
a.forEach(function(i, j){
data.test[j].attr ="<a href='
http://www....' target='_blank'>test</a>"
})
}
return JSON.stringify(data)
but it won't render correctly in browser...