100 rows sorting is too slow.

100 rows sorting is too slow.

josungiljosungil Posts: 2Questions: 2Answers: 0

I'm displaying 100 rows in a table without pagination. And a table has just 4 sorting column.
However when I clicked head column to sort, it takes about 300 ms for sorting.
How can I speed up sorting with 100 rows?

        var table = $('#dataTable').DataTable({
            "data": dataSet,
            "paging": false,
            "searching": false,
            "info": false,
            "order": [],
            "columnDefs": [{
                "targets": [0,6,7,8,9,10,11,12,13,14,15,16,17,18],
                "orderable": false
            }]
        });
This discussion has been closed.