creo que ya aparecio la solucion:
Cita: <html>
<head>
<script>
function tr(){
alert("tr");
}
function check(e){
alert("check");
if (e.stopPropagation) {
e.stopPropagation();
}else{
if(window.event) {
window.event.cancelBubble = true;
}
}
}
</script></head>
<form>
<table>
<tr onClick="tr()"><td>
ch<input type="checkbox" onClick="check(event)">
</td></tr></table>
</form>
<body>
</body>
</html>
aunque no lo probé al 100%
saludos