Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

selectBoxIt with Datatable pagination not working

I have used selectBoxIt for selectbox to designing a dropdown box and used datatable for listing of data.

So, It is not working when paginate in datatable list.Code i have done for selectbox is

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

But it is not working with pagination?

like image 674
Bhumi Shah Avatar asked Feb 14 '26 18:02

Bhumi Shah


1 Answers

Pls try with below code.

fnDrawCallback : function() {
  var selectBox = $(".filter_group").selectBoxIt({ theme: "jqueryui", native: true });
}        
like image 183
Jigisha Variya Avatar answered Feb 17 '26 08:02

Jigisha Variya