|
|
|
@ -25,17 +25,30 @@ |
|
|
|
|
$(document).ready( function() { |
|
|
|
|
$(".chzn-select").chosen(); |
|
|
|
|
|
|
|
|
|
//highlighting rows |
|
|
|
|
|
|
|
|
|
/*$("form .data_table .row_even, form .data_table .row_odd").click(function(e) { |
|
|
|
|
var $check = $(this).find("input:checkbox"); |
|
|
|
|
if ($check.is(":checked")) { |
|
|
|
|
$(this).removeClass("row_selected"); |
|
|
|
|
$check.removeAttr('checked', 'checked'); |
|
|
|
|
} else { |
|
|
|
|
$(this).addClass("row_selected"); |
|
|
|
|
$check.attr('checked', 'checked'); |
|
|
|
|
} |
|
|
|
|
});*/ |
|
|
|
|
|
|
|
|
|
$("form .data_table input:checkbox").click(function() { |
|
|
|
|
if ($(this).is(":checked")) { |
|
|
|
|
$(this).parentsUntil("tr").parent().addClass("row_selected"); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} else { |
|
|
|
|
$(this).parentsUntil("tr").parent().removeClass("row_selected"); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
</script> |
|
|
|
|
{/literal} |
|
|
|
|
{$execution_stats} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|