I want to add a link to a column in bootstrap-table. How to do this?
In your HTML table:
<th data-field="snum" data-formatter="LinkFormatter">Computer</th>
in your javascript:
function LinkFormatter(value, row, index) {
return "<a href='"+row.url+"'>"+value+"</a>";
}