how to now what event is blocking another event? (phreeze example)

how to now what event is blocking another event? (phreeze example)

Hello, I'm trying to build a site with phreeze that uses jquery and bootstrap.

on generated lists creates something like this:
http://phreeze.com/cargo/services

With depends a lot on this
http://phreeze.com/cargo/scripts/app/services.js

I edited the html of the listview adding a column with an image. Add a click event on that image, but the row-click event is "blocking it"...

If I remove the code from services.js, particulary:
  1. $('table.collection tbody tr').click(function(e) {
    				e.preventDefault();
    				var m = page.services.get(this.id);
    				page.showDetailDialog(m);
    			});

I can avoid that particular modal view popup, but my buton still doesn't work.

Is there anyway to debugg what is blocking it leave that code and know it was trying to reach a lower level "click" event?


Thanks!