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?
Write a custom formatter:
function myFormatter(row, cell, value, columnDef, dataContext) {
return "<a href='#'>Click</a>";
}
and specify it in the column definition.
From @RicardoStuven
Or use the defaultFormatter option to treat any value as HTML:
defaultFormatter: function (row, cell, value, columnDef, dataContext) {
if (value == null) return '';
return value.toString();
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With