I have
and I have problem. When I hit button, row click event execute too, but I don't want this behavior. I want only button click execute, without row click.
Using jQuery (due to question tag):
$('#yourButton').click(function(e) {
// stop event from bubbling up to row element
e.stopPropagation();
// now do your stuff
});