I'm used to the jQuery style of selecting, which would be fairly easy in this case
$("tbody td:has(input)").click(...);
But dojo seems to be using only regular CSS selectors, which means I can't get a parent element.
I've tried to do this:
dojo.query("tbody td input").parentNode.onclick(...);
But that doesn't seem to work. Any ideas?