|
Lines 479-485
Link Here
|
| 479 |
e.preventDefault(); |
479 |
e.preventDefault(); |
| 480 |
$(".cb").each(function(){ |
480 |
$(".cb").each(function(){ |
| 481 |
$(this).prop("checked", true); |
481 |
$(this).prop("checked", true); |
| 482 |
selRecord(this.value, true); |
|
|
| 483 |
}); |
482 |
}); |
| 484 |
enableCheckboxActions(); |
483 |
enableCheckboxActions(); |
| 485 |
}); |
484 |
}); |
|
Lines 488-494
Link Here
|
| 488 |
e.preventDefault(); |
487 |
e.preventDefault(); |
| 489 |
$(".cb").each(function(){ |
488 |
$(".cb").each(function(){ |
| 490 |
$(this).prop("checked", false); |
489 |
$(this).prop("checked", false); |
| 491 |
selRecord(this.value, false); |
|
|
| 492 |
}); |
490 |
}); |
| 493 |
enableCheckboxActions(); |
491 |
enableCheckboxActions(); |
| 494 |
}); |
492 |
}); |
| 495 |
- |
|
|