我正在使用Django模板使用静态HTML输出创建DataTable。
我想通过以下方式使用子行功能:
我可以在HTML <table>
中创建子行,但是它们当然会被视为主行。如何指定<tr>
是与上一行相关的子行?
例如
<table id="example" class="display" style="width:100%">
<tr><td>George Thomas</td><td>Age 45</td><td>200 lbs</td></tr>
<tr this-is-a-child-row=true>
<div>Child row for George Thomas!</div>
</tr>
<tr><td>Lucinda Thomas</td><td>Age 49</td><td>140 lbs</td></tr>
<tr this-is-a-child-row=true>
<div>Child row for Lucinda Thomas!</div>
</tr>
</table>