ここに問題があり、Codeply http://www.codeply.com/go/rxWzeVwBUaでモックアップをまとめました。
データテーブルで Select2 ドロップダウン ボックスをクリックできません。どんな助けでも大歓迎です。
<div class="container">
<h1>From data</h1>
<p></p>
<table id="table">
<thead>
<tr>
<th data-field="id">ID</th>
<th data-field="name">Item Name
<select class='table finditem'>
<option></option>
<option value='0'>Item 0</option>
...
</select>
</th>
<th data-field="price">Item Price</th>
</tr>
</thead>
</table>
</div>
$table.bootstrapTable({
data: data});
});
$('#finditem').select2({
placeholder: 'Find Item',
allowClear: true
});