We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
</paper-datatable-column> <paper-datatable-column header="Name" property="user" sortable> <template> <a href="/x/y/z" target="_blank" class="routing">{{value.name}}</a> </template> </paper-datatable-column>
The text was updated successfully, but these errors were encountered:
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>
<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); }
Sorry, something went wrong.
No branches or pull requests
</paper-datatable-column> <paper-datatable-column header="Name" property="user" sortable> <template> <a href="/x/y/z" target="_blank" class="routing">{{value.name}}</a> </template> </paper-datatable-column>
The text was updated successfully, but these errors were encountered: