select2 不能在 footable 里面工作

select2 not working inside fooftable

为什么 select2 在 footable 中不起作用?

我想将 select2 放入可放置的单元格中。

<td>
   <select class="form-control" id="_products">                                           
      <option value="1">Test Product 1</option>
      <option value="2">Test Product 2</option>
      <option value="3">Test Product 3</option>
      <option value="4">Test Product 4</option>
   </select>
</td>

这是带有示例的 jsfiddle。

https://jsfiddle.net/aq9Laaew/54155/

我正在使用 jquery-footable 3.1.6 和 select2 4.0.6 rc1

您必须在 footable 渲染后调用 select2。

$('.footable').footable({},function(){
    $('select.form-control').select2();
});

https://jsfiddle.net/aq9Laaew/54223/