gyrocode/jquery-datatables-checkboxes

CheckAll does not work when table has scrollable properties with iCheck plug-in

vmosoti opened this issue · 4 comments

If you set the table to below properties, the CheckAll checkbox does not activate the others

scrollY: 450,
scroller: true,
scrollX: true,

let me know any settings I am missing.

Do you use the most recent version of the plug-in?

I added the options you've mentioned and it seems to work just fine, see this example.

Yes I have the latest version.
Looks like a problem when using iCheck. Could you give an example based on iCheck please.

I see the problem now, good point. The problem is in the selector for the table container when attaching event handlers.

I updated official example to avoid this problem when scrolling is enabled.

See updated example for code and demonstration.

Awesome. That worked.