Lines 13-25
function Import(Breeding, recordid, AuthType, FrameworkCode) {
Link Here
|
13 |
|
13 |
|
14 |
$( document ).ready( function() { |
14 |
$( document ).ready( function() { |
15 |
|
15 |
|
16 |
$( "#CheckAll" ).click( function() { |
16 |
$( "#CheckAll" ).click( function(e) { |
17 |
$( ".checkboxed" ).checkCheckboxes(); |
17 |
e.preventDefault(); |
18 |
return false; |
18 |
$( ".checkboxed input:checkbox" ).prop("checked", true); |
19 |
}); |
19 |
}); |
20 |
$( "#CheckNone" ).click( function() { |
20 |
$( "#CheckNone" ).click( function(e) { |
21 |
$( ".checkboxed" ).unCheckCheckboxes(); |
21 |
e.preventDefault(); |
22 |
return false; |
22 |
$( ".checkboxed input:checkbox" ).prop("checked", false); |
23 |
}); |
23 |
}); |
24 |
|
24 |
|
25 |
$( ".submit" ).on( "click", function() { |
25 |
$( ".submit" ).on( "click", function() { |
26 |
- |
|
|