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
});
look at your code this is what you should do in the button click event stopPropagation
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With