Lines 48-54
$(document).ready(function() {
Link Here
|
48 |
return false; |
48 |
return false; |
49 |
}); |
49 |
}); |
50 |
|
50 |
|
51 |
$("#Aform").on("submit", function(){ |
51 |
$("#checkAform").on("click", function(){ |
52 |
if ( $("input:checkbox[name='import_record_id']:checked").length < 1 ) { |
52 |
if ( $("input:checkbox[name='import_record_id']:checked").length < 1 ) { |
53 |
alert( ERR_NO_RECORD_SELECTED ); |
53 |
alert( ERR_NO_RECORD_SELECTED ); |
54 |
return false; |
54 |
return false; |
Lines 72-78
$(document).ready(function() {
Link Here
|
72 |
return false; |
72 |
return false; |
73 |
} |
73 |
} |
74 |
|
74 |
|
75 |
return disableUnchecked($(this)); |
75 |
disableUnchecked($(this)); |
|
|
76 |
$("#Aform").submit(); |
76 |
}); |
77 |
}); |
77 |
|
78 |
|
78 |
$('#tabs').tabs(); |
79 |
$('#tabs').tabs(); |
79 |
- |
|
|