diff --git a/js/views_expandable_table.js b/js/views_expandable_table.js
index 527c9b18ef2c17390cfe102d7c441377de884613..165ab6528ecb3dbf19b7d52b5be228fad83022e1 100644
--- a/js/views_expandable_table.js
+++ b/js/views_expandable_table.js
@@ -12,6 +12,10 @@
         $trigger.click(function () {
           toggleExpanded($trigger, $target);
         });
+        // Allow some elements within trigger element to be clicked w/o toggle.
+        $('a, btn, input', $trigger).click(function (event) {
+            event.stopPropagation();
+        });
 
         // Allow hover to apply to both rows.
         $trigger.hover(function () {