aslagle / reactive-table

A reactive table designed for Meteor
https://atmospherejs.com/aslagle/reactive-table
Other
328 stars 138 forks source link

Chrome button click in table cell un-responsive #452

Closed bryantbiggs closed 7 years ago

bryantbiggs commented 7 years ago

When using Chrome, the buttons inside my table are un-responsive and usually takes multiple clicks before the event is fired. In Firefox and Safari there are no issues.

{ label: 'Contact', fn: function(value, object) { const btn = '<button name="btn_contact" class="primary basic ui icon button"> <i class="mail outline icon"></i> </button>'; return new Spacebars.SafeString(btn); }

aslagle commented 7 years ago

I don't know what would cause that. There aren't any click event handlers on the table rows that would interfere with it.

bryantbiggs commented 7 years ago

This was an error on my end. Changing the html from "name" to "id" allowed the button clicks to be picked up and fire.