Performance issues when hiding columns in jQuery DataTables

I use a method DataTable.column(index).visible(false)to hide columns in my application. However, with several hundred rows, it takes almost 5 seconds, hiding a couple of columns. Does anyone know if it's possible to speed it up?

+1
source share
1 answer

Perhaps you could try setting http://datatables.net/reference/option/autoWidth to false?

+1
source

Source: https://habr.com/ru/post/1546326/


All Articles