Is there a way to uncheck all checkboxes in a table?

datatable.unCheckAll() ?

Nope, but you can use

datatable.eachRow(function(id){
    this.getItem(id).some = false;
});
datatable.refresh();

where some is ID of a checkbox column

This is perfect thank you again.