David-Mulder / paper-datatable

A material design implementation of a data table.
GNU General Public License v3.0
237 stars 92 forks source link

href not working #119

Open sp1rs opened 7 years ago

sp1rs commented 7 years ago

`

`
diegocerdan commented 7 years ago

I guess the table is stealing the click.

I had to hack it back by listening to the event: <paper-datatable-column on-cell-tap="_openExternalURL"></paper-datatable-column>

And later:

_openExternalURL: function(ev) {
    window.open('http://www.mywebsite.com/' + ev.detail.item.id);
}