我想在bootstrap-table中添加指向列的链接。怎么做?
答案 0 :(得分:6)
在您的HTML表格中:
<th data-field="snum" data-formatter="LinkFormatter">Computer</th>
在你的javascript中:
function LinkFormatter(value, row, index) {
return "<a href='"+row.url+"'>"+value+"</a>";
}
答案 1 :(得分:3)
我使用'formatter'对象找到了这种机制。下面是一个示例格式化程序。
function identifierFormatter(value, row, index) {
return [
'<a class="like" href="javascript:void(0)" title="Like">',
value,
'</a>'].join('');
}
基本上要使用它,必须将其作为HTML数据属性添加到表头。
<th data-field="identifier" data-align="right" data-sortable="true" data-formatter="identifierFormatter">Identifier</th>
答案 2 :(得分:0)
HTML
<table id="table_exemple" data-toggle="table" data-pagination="true" >
<thead>
<tr>
<th data-field="id">Id</th>
<th data-field="name">Nome</th>
<th data-field="action" data-formatter="ActionFormatter">Details</th>
</tr>
</thead>
<tbody></tbody>
</table>
的javascript
var bootstrap_table = $('#table_exemple');
function AddRow(obj){
bootstrap_table.bootstrapTable('insertRow', {
index: 0,
row: {
id: obj.id,
name: obj.name,
action: obj.id
}
});
}
function ActionFormatter(value) {
return '<a href="javascript:void(0)" onclick="Details('+ value +')">Details</a>';
}
function Details(id){
...
}