$('#dede tr:first-child input:checkbox').on('click', function(){
var that = this;
$(this).closest('table').find('tr:visible > td:first-child input:checkbox')
.each(function(){
this.checked = that.checked;
$(this).closest('tr').toggleClass('selected');
});
});