DataTables warning: table id=DTissueReport - Ajax error. For more information about this error, please see http://datatables.net/tn/7
code:
DataTables::create(array(
"name" => "DT" . $this->reportName,
"dataSource" => function () {
return $this->getDataSource()->query($this->query);
},
"serverSide" => true,
"method" => 'post',
"showHeader" => true,
"showFooter" => true,
"columns" => array(
"CODE" => array("label" => "code"),
),
"cssClass" => array(
"table" => "table-bordered"
),
"options" => array(
"processing" => true,
"searching" => true,
"paging" => true,
"colReorder" => true,
"order" => [],
"pageLength" => 25,
"fixedHeader" => true,
"oLanguage" => array(
"sLengthMenu"=> "_MENU_ kayıt göster",
"sZeroRecords" => "Hiç kayıt yok",
"sInfo" => "kayıt",
"sInfoEmpty" => "",
"sSearch" => "Filtrele/Ara",
"oPaginate" => array("sPrevious" => "Önceki", "sNext" => "Sonraki")
),
),
));