//html
<input type="checkbox" id="checkboxAll" title="Select All" />
//jquery
$('#checkboxAll').change(function () {
$('input:checkbox').filter(function () {
return !this.disabled
}).prop('checked', this.checked);
});