|
Lines 43-48
$(document).ready(function(){
Link Here
|
| 43 |
var row = $(this).parent(); |
43 |
var row = $(this).parent(); |
| 44 |
$(".linktools").hide(); |
44 |
$(".linktools").hide(); |
| 45 |
$("tr").removeClass("selected"); |
45 |
$("tr").removeClass("selected"); |
|
|
46 |
row.addClass("selected"); |
| 46 |
if($tgt.is("a")||$tgt.is(":nth-child(7)")||$tgt.is(":nth-child(8)")||$tgt.is(":nth-child(9)")||$tgt.is(":nth-child(10)")){ |
47 |
if($tgt.is("a")||$tgt.is(":nth-child(7)")||$tgt.is(":nth-child(8)")||$tgt.is(":nth-child(9)")||$tgt.is(":nth-child(10)")){ |
| 47 |
return true; |
48 |
return true; |
| 48 |
} else { |
49 |
} else { |
|
Lines 51-57
$(document).ready(function(){
Link Here
|
| 51 |
var left = position.left+5; |
52 |
var left = position.left+5; |
| 52 |
$(".linktools",row).show().css("position","absolute").css("top",top).css("left",left); |
53 |
$(".linktools",row).show().css("position","absolute").css("top",top).css("left",left); |
| 53 |
} |
54 |
} |
| 54 |
row.addClass("selected"); |
|
|
| 55 |
}); |
55 |
}); |
| 56 |
$("form[name='f']").submit(function(){ |
56 |
$("form[name='f']").submit(function(){ |
| 57 |
if ($('input[type=checkbox]').filter(':checked').length == 0) { |
57 |
if ($('input[type=checkbox]').filter(':checked').length == 0) { |
| 58 |
- |
|
|