Bootstrap Table

by wenyi

HTML

<link rel="stylesheet" href="https://rawgit.com/wenzhixin/bootstrap-table/master/src/bootstrap-table.css">
<script src="https://rawgit.com/wenzhixin/bootstrap-table/master/src/bootstrap-table.js"></script>
<table id="table"
        data-search="true">
    <thead>
    <tr>
        <th data-field="Name" data-formatter="nameFormatter">Name</th>
    </tr>
    </thead>
</table>

JavaScript

$(function () {
        var data =[{"Name":["abc", "def"]},{"Name":["123", "234"]}]
        
        $table = $('#table'),

        $('#table').bootstrapTable({
            data: data
        });
    });
    
function nameFormatter(name) {
	return name.join(',');
}