“datatables y alternar no funciona” Código de respuesta

El desplegable de datos de datos no funciona

$('#payment-notcompleted-table').DataTable().ajax.reload( function() {
  // initialize dropdown
  $('.dropdown-toggle').dropdown();
});
Newbie Programmer

datatables y alternar no funciona

CAUSE
Pages other than first do not exist in DOM at the time of initialization, that is why your handler never gets called.

SOLUTION
You need to use event delegation by providing selector as a second argument in on() call, see example below:
$(document).ready(function(){
    $('#table_name').DataTable();

    $('#table_name').on('click', '.some-toggle-class', function(){
        // your code here
    });   
});
Code Alchemy

Respuestas similares a “datatables y alternar no funciona”

Preguntas similares a “datatables y alternar no funciona”

Más respuestas relacionadas con “datatables y alternar no funciona” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código