iCheck in DataTable issue

Hello there,
Good Day!

there is some issue with icheck in data-table, the icheckbox JS/CSS is not applying from the second page in data-table. Can you help me with this please?

The theme default is also having same issue.

Thanks for your help in advance.

Regards,
Ronak Patel

Hi there

Can you provide more detailed information? how can we replicate your problem? please also provide link to your website

let me share a complete page with you. kindly have a look, it is the same code as in Theme HTML

Hello there,

I hope you are doing well today.

Could you please provide a link to the page so that we can inspect it?

Best Regards,
Support

Dear,
yea I am doing well today, thank you.

The whole code is in my local PC that’s why I have share a zip file with you in my previous reply.
I got a solution for the same. thanks for your support.

custom.js file

OLD Code

$datatable.on('draw.dt', function() {
				  $('checkbox input').iCheck({
					checkboxClass: 'icheckbox_flat-green'
				  });
				});

NEW Code

$datatable.on('draw.dt', function() {
				  $('checkbox input, input[type="checkbox"]').iCheck({
					checkboxClass: 'icheckbox_flat-green'
				  });
				});

Regards,
Ronak Patel