How to check checkbox in jQuery DataTable after searching
$('#column3_search').on( 'keyup', function () {
table
.columns( 1 )
.search( this.value )
.draw();
//Than ckeck on uncheck checkbox in datatable first column
} );
I didn't comprehend the entire logic behind your question , however, I think, following demo delivers general clue as of how your task could be accomplished;