Merhabalar;
Çözüm aşağıdaki gibidir.
<table id="myTable" data-toggle="table">
<thead>
<tr>
<th data-field=""></th>
<th data-field="name">Name</th>
<th data-field="price">Price</th>
</tr>
</thead>
<tbody>
<tr>
<td class="add">+</td>
<td><input type="text" name="" class="form-control"></td>
<td><input type="text" name="" class="form-control"></td>
</tr>
<tr class="detail-view" style="display: none;">
<td colspan="12">
<div>
<input type="file" class="filepond" name="" id="">
<script>FilePond.create(document.querySelector(".filepond"), { labelIdle: "Resminizi Sürükleyip Bırakın (JPG, PNG, GIF (maks. 5MB))", imageResizeMode: "force", imagePreviewHeight: 100, imageCropAspectRatio: "1:1", imageResizeTargetWidth: 100, imageResizeTargetHeight: 100 });</script>
</div>
</td>
</tr>
<tr>
<td class="add">+</td>
<td><input type="text" name="" class="form-control"></td>
<td><input type="text" name="" class="form-control"></td>
</tr>
<tr class="detail-view" style="display: none;">
<td colspan="12">
<input type="text" name="" id="">
</td>
</tr>
</tbody>
</table>
<script>
$(document).ready(function() {
$('#myTable').bootstrapTable();
$('#myTable tbody tr td.add').click(function(event) {
var nextRow = $(this).closest('tr').next('.detail-view');
nextRow.toggle();
});
});
</script>