call rowCallback from within column-reorder event

call rowCallback from within column-reorder event

dpanscikdpanscik Posts: 121Questions: 32Answers: 0

Before I move columns I have nice checks in the check boxes

When I move any column the checks in the check boxes goes away.

After a column move I would like to use the colum-reorder event to fire rowCallback to redraw the checkboxes.

how can I fire rowCallback ?

        $('#ApForm').on('column-reorder', function (e, settings, details) {
           

        });

This question has an accepted answers - jump to answer

Answers

  • kthorngrenkthorngren Posts: 20,148Questions: 26Answers: 4,736
    edited March 2023 Answer ✓

    See if calling draw() helps. You will probably want to pass the false parameter to stay on the same page. For example: table.draw( false );.

    Kevin

  • dpanscikdpanscik Posts: 121Questions: 32Answers: 0

    more datatable magic! table.draw( false ); this worked beauitfuly!

Sign In or Register to comment.