gpt4 book ai didi

javascript - bootstrap-table:如何将一个表嵌套到另一个表中?

转载 作者:行者123 更新时间:2023-11-29 10:36:57 25 4
gpt4 key购买 nike

我正在使用这个 bootstrap-table .我想将一个表嵌套到另一个表中。

$(document).ready(function() {
var t = [{
"id": "1",
"name": "john",
}, {
"id": "2",
"name": "ted"
}];


//TABLE 1
$('#summaryTable').bootstrapTable({
data: t,
detailFormatter: detailFormatter
});

function detailFormatter(index, row, element) {
$(element).html(row.name);
$(element).html(function() {
//I was thinking of putting the code here, but I don't know how to do it so it will work,
//except javascript, it needs to be put this html code <table id="detailTable"></table>

});


// return [

// ].join('');
}

//TABLE 2
var t2 = [{
"id": "1",
"shopping": "bike",
}, {
"id": "2",
"shopping": "car"
}];
$('#detailTable').bootstrapTable({
data: t2,
columns: [{
field: 'id',
title: 'id'
}, {
field: 'shopping',
title: 'Shopping detail'
}, {
field: 'status',
checkbox: true
}],
checkboxHeader: false

});
$('#detailTable').on('check.bs.table', function(e, row, $el) {
alert('check index: ' + row.shopping);
});
$('#detailTable').on('uncheck.bs.table', function(e, row, $el) {
alert('uncheck index: ' + row.shopping);
});

});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-table/1.10.0/bootstrap-table.min.css" rel="stylesheet"/>
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet"/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-table/1.10.0/bootstrap-table.min.js"></script>



<div class="container">
<p>TABLE 1</p>
<table id="summaryTable" data-detail-view="true">
<thead>
<tr>
<th data-field="id" data-align="center" data-width="20px">id</th>
<th data-field="name" data-align="center">Name</th>
</tr>
</thead>
</table>
<br>

<p>TABLE 2</p>
<table id="detailTable"></table>

</div>

这是我的演示链接: fiddle

有两个表。表 1 具有可扩展的行,我想将表 2 放入表 1 的每一行。有一个名为 detailFormatter 的函数这样做,你可以在哪里返回一个字符串或呈现一个元素(我正在玩它,但我不能让它工作)。对于这个演示,表 1 是用一些 html 代码创建的,表 2 只使用 javascript,但是有这个启动 div <table id="detailTable"></table> (完成哪种方式对我来说并不重要)。 那么,问题是如何将表 2 放入表 1 中,并可能使用其事件(如选中或取消选中复选框),如表 2 的演示所示?稍后,我想使用本次事件onExpandRow因此,当用户展开表 1 的行时,它将从数据库中获取数据并填充表 2。

最佳答案

好吧,只需克隆您的 detailTable 并使用 detailFormatter 将其放在每个 row 中,如下所示:

function detailFormatter(index, row, element) {
$(element).html($('#detailTable').clone(true));
}

现在,当您执行clone 时,将会创建重复的id,因此您只需更改其id 即可将其删除,如下所示:

function detailFormatter(index, row, element) {
$(element).html($('#detailTable').clone(true).attr('id',"tbl_"+row.id));
}

此外,您可以隐藏 #detailTable,因为您只是将它附加到另一个 table 中,一旦隐藏它,您需要添加 show clone tables 因为所有属性都将被复制到 clone(true) 中,可以按如下方式完成:

function detailFormatter(index, row, element) {
$(element).html($('#detailTable').clone(true).attr('id',"tbl_"+row.id).show());
}
//.....
//.....
//.....
//At the end
$("#detailTable").hide();

A complete DEMO

关于javascript - bootstrap-table:如何将一个表嵌套到另一个表中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34982251/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com