I did so, I hope it helps.
List contents of a table.
HTML
<table id="TabEvolucao" class="table table-hover" cellspacing="0" width="100%">
<thead>
<tr >
<th>#</th>
<th width="100px">Data</th>
<th>Descrição</th>
<th>Usuário</th>
<th>Ativo</th>
</tr>
</thead>
<tfoot>
<tr >
<th>#</th>
<th width="100px">Data</th>
<th>Descrição</th>
<th>Usuário</th>
<th>Ativo</th>
</tr>
</tfoot>
<tbody>
</tbody>
</table>
Datatables with active SELECT.
$('#TabEvolucao').DataTable({
"processing" : true,
"select": true ,
"ajax" : {
"type" : "POST",
"url" : "estrutura/tabevolucao.php",
dataSrc : '',
"data" : function(d){
d.idcliente = vlsidcliente;
d.acao = "select";
}
},
"columns" : [ {"data" : "id"},
{"data" : "data"},
{"data" : "descricao"},
{"data" : "nome"},
{"data" : "ativo"}
],
"aaSorting": [[1,'asc']],
"iDisplayLength": 7,
"bFilter": true,
"aaSorting": [[1,'asc']],
"language": {
"sEmptyTable": "Nenhum registro encontrado",
"sInfo": "Mostrando de _START_ até _END_ de _TOTAL_ registros",
"sInfoEmpty": "Mostrando 0 até 0 de 0 registros",
"sInfoFiltered": "(Filtrados de _MAX_ registros)",
"sInfoPostFix": "",
"sInfoThousands": ".",
"sLengthMenu": "_MENU_ resultados por página ",
"sLoadingRecords": "Carregando...",
"sProcessing": "Processando...",
"sZeroRecords": "Nenhum registro encontrado",
"sSearch": "Pesquisar",
"oPaginate": {
"sNext": "Próximo",
"sPrevious": "Anterior",
"sFirst": "Primeiro",
"sLast": "Último"
},
"oAria": {
"sSortAscending": ": Ordenar colunas de forma ascendente",
"sSortDescending": ": Ordenar colunas de forma descendente"
}
}
});
Click the register to open MODAL by passing the ID.
JAVA
var TabEvolucao = $('#TabEvolucao').DataTable();
TabEvolucao
.on( 'select', function ( e, dt, type, indexes ) {
var rowData = TabEvolucao.rows( indexes ).data().toArray();
var id = rowData["0"].id;
document.getElementById('idevolucao').value = id;
$('#modalVWEVOLUCAO').data('id', id).modal('show');
} );
MODAL
<div class="modal fade" id="myModalUpdateEVO" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog modal-sm modal-notify modal-danger" role="document">
<!--Content-->
<div class="modal-content text-center">
<!--Header-->
<div class="modal-header d-flex justify-content-center">
<p class="heading">Continuar com atualização?</p>
</div>
<!--Body-->
<div class="modal-body">
<i class="fa fa-times fa-4x animated rotateIn"></i>
</div>
<!--Footer-->
<div class="modal-footer flex-center">
<button type="button" class="btn btn-outline-secondary-modal" id="btnUpdateYesEVO" href="#">Sim</button>
<button type="button" class="btn btn-primary-modal waves-effect" data-dismiss="modal">Não</button>
</div>
</div>
<!--/.Content-->
</div>
</div>
Button action
JAVA
$('#btnUpdateYesEVO').click(function () {
var id = $('#myModalUpdateEVO').data('id');
var idevolucao = document.getElementById('idevolucao').value;
var descricaoevolucao = document.getElementById('descricaoevolucao').value;
var boatao = document.getElementById('acaobotaoevolucao').value;
var iduser=$('#iduser').val();
if(boatao == 'DESATIVAR'){
$.post('estrutura/excluirevolucao.php',{
acao:'delete',
id:id,
user_id:iduser
},function(r) {
var m = jQuery.parseJSON(r);
if (m.success) {
$('#myModalUpdateEVO').modal('hide');
toastr["success"](m.msg);
$("#listevolucao").load(location.href + " #listevolucao>", "");
} else {
toastr["error"](m.msg);
$('#myModalUpdateEVO').modal('hide');
}
});
}
PHP
<?php
include("../includes/config.php");
if ($_POST) {
$data = array('success' => '0',
'msg' => 'Ocorreu um erro, nada foi excluído!');
$id = (int) $_POST['id'];
$user_id = (int) $_POST['user_id'];
$ip = "";
$navegaodr = "";
if ($_POST['acao'] == 'delete' && is_int($id)) {
//GRAVA LOG
$data = date("y-m-d H:i:s");
$modulo = "EVOLUCAO";
$acao = "DESATIVOU REGISTRO: " . $id ;
$rs = $con->prepare("INSERT INTO logs_acessos VALUES (:user_id, :ip, :data, :navegaodr, :modulo, :acao)");
$rs->bindParam(':user_id', $user_id );
$rs->bindParam(':ip', $ip );
$rs->bindParam(':data', $data );
$rs->bindParam(':navegaodr', $navegaodr );
$rs->bindParam(':modulo', $modulo );
$rs->bindParam(':acao', $acao );
$result = $rs->execute();
$select = "update evolucao set ativo = 'N' where id = " . $id;
$rs = $con->prepare($select);
if($rs->execute()){
if($rs->rowCount() > 0){
$data = array('success' => '1',
'msg' => 'Registro desativado com sucesso!');
}
}
}
echo json_encode($data);
die();
}
?>