Lines 68-81
$(document).ready(function(){
Link Here
|
68 |
$("#CheckAll").click(function (e) { |
68 |
$("#CheckAll").click(function (e) { |
69 |
e.preventDefault(); |
69 |
e.preventDefault(); |
70 |
$(".select_record").each(function () { |
70 |
$(".select_record").each(function () { |
71 |
$(this).prop("checked", true).change(); |
71 |
$(this).prop("checked", true); |
72 |
}); |
72 |
}); |
73 |
}); |
73 |
}); |
74 |
|
74 |
|
75 |
$("#CheckNone").click(function (e) { |
75 |
$("#CheckNone").click(function (e) { |
76 |
e.preventDefault(); |
76 |
e.preventDefault(); |
77 |
$(".select_record").each(function () { |
77 |
$(".select_record").each(function () { |
78 |
$(this).prop("checked", false).change(); |
78 |
$(this).prop("checked", false); |
79 |
}); |
79 |
}); |
80 |
}); |
80 |
}); |
81 |
|
81 |
|
82 |
- |
|
|