FSN#38633 Op hele TD kunnen klikken voor multi-select checkbox
svn path=/Website/trunk/; revision=31843
This commit is contained in:
@@ -95,6 +95,14 @@ $(document).ready(function() {
|
||||
return false;
|
||||
}
|
||||
});
|
||||
$('th.multiselect:has(:checkbox)').click(function (e) {
|
||||
if (!$(e.target).is('input'))
|
||||
{
|
||||
$('input:checkbox', this).prop('checked',!$('input:checkbox', this).prop('checked'));
|
||||
checkAll($(this).closest("table")[0].id, $('input:checkbox', this)[0])
|
||||
return false;
|
||||
}
|
||||
});
|
||||
|
||||
// Bij multi-select Shift-toets gebruiken voor een range
|
||||
var $chkboxes = $('input.multiselect');
|
||||
|
||||
Reference in New Issue
Block a user