jQuery选择器不适用于数据表

时间:2019-12-07 16:35:36

标签: javascript jquery laravel datatables angular-bootstrap-toggle

嗨,我的Datatable插件有问题 问题是我无法选择“操作”列中的复选框以将其转换为bootstrap-toggle 它以前工作过,但是当我使用数据表的服务器端并在控制器中声明复选框时没有任何效果(对不起我的英语) 请帮忙!! 这是控制器代码

return DataTables::of($participant)
        ->addColumn('action',function($participant){
            $route = route('admin.participant.presence',$participant);

            return '<form action="'.$route.'" method="PATCH">
            <input type="hidden" name="presence" value="0">
            <input type="checkbox" class="participation" onchange="this.form.submit()" '.isChecked($participant).' name="presence" value="1">
            </form>';
        })->make(true);

这是视图中的js代码,我认为问题出在这里

<script>
        $(document).ready( function(){
            var id = {{request()->route('id')}};
        $('#table').DataTable({
        "processing": true,
        "serverSide": true,
        "ajax": "/admin/evenment/event/participant/ajaxdatatable/"+id,
        "columns":[
            {"data": "adherent_id"},
            {"data": "nom_participant"},
            {"data": "prenom_participant"},
            {"data": "fonction"},
            {"data": "action"},
        ]
    });
    $('.participation').bootstrapToggle({
        on: 'Oui',
        off: 'Non',
        onstyle: 'success',
        offstyle: 'danger',
        width: '70'
    });
    });

    </script>

1 个答案:

答案 0 :(得分:1)

使用serverSide时,将在整个页面加载后显示结果表。因此,当数据表显示结果时,引导程序元素已经生成。

您可以通过调用一个函数来解决此问题,该函数负责在“完整” ajax处理程序中显示引导程序元素。 (此处$ .extend适用于数据表选项对象)

$.extend(true, options, {
    "ajax": {
        "url": self.data('url'),
        "data": function ( d ) {
            d.action = "drawDatatable"
        },
        "type": "POST",
        "complete": function() {
            prepareDisplayElements("#"+self.attr("id"));
        }
    }
});

所以在您的情况下,可能是这样简单的事情:

$(document).ready( function(){
    var id = {{request()->route('id')}};

    $('#table').DataTable({
        "processing": true,
        "serverSide": true,
        "ajax": {
            "url": "/admin/evenment/event/participant/ajaxdatatable/"+id,
            "complete": function() {
              $('.participation').bootstrapToggle({
                  on: 'Oui',
                  off: 'Non',
                  onstyle: 'success',
                  offstyle: 'danger',
                  width: '70'
              });
            }
        },
        "columns":[
            {"data": "adherent_id"},
            {"data": "nom_participant"},
            {"data": "prenom_participant"},
            {"data": "fonction"},
            {"data": "action"},
        ]
    });
});