6

我想在bootstrap-table中添加一个列的链接。这个怎么做?

4

3 回答 3

11

在您的 HTML 表格中:

<th data-field="snum" data-formatter="LinkFormatter">Computer</th>

在你的 javascript 中:

function LinkFormatter(value, row, index) {
  return "<a href='"+row.url+"'>"+value+"</a>";
}
于 2015-06-04T18:00:38.113 回答
3

我使用“格式化程序”对象找到了这个机制。下面是一个示例格式化程序。

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>
于 2015-01-07T12:17:06.543 回答
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){
    ...
}
于 2017-09-13T19:08:10.450 回答