SelectBoxIt with Datatable pagination doesn't work

I used selectBoxIt for selectbox to design dropdown and used data for list of data.

So it doesn't work when paginate is on the data list. The code I did for selectbox is

 var selectBox = $(".filter_group").selectBoxIt({ theme: "jqueryui", native: true });

      

But it doesn't work with pagination?

+3


source to share


1 answer


Try using below code.



fnDrawCallback : function() {
  var selectBox = $(".filter_group").selectBoxIt({ theme: "jqueryui", native: true });
}        

      

+4


source







All Articles