[Feature Request] Add row click event to table component
See original GitHub issueProblem to solve
With vuetify v2.0 table are more convenient. Table just config in v-data-table tag. Now if I wanna catch RowClick Event, I must overide item template. I suggess add a onRowClick.
<v-data-table
:headers="headers"
:items="desserts"
:items-per-page="5"
@onRowClick="openDetail"
class="elevation-1"
></v-data-table>
Issue Analytics
- State:
- Created 4 years ago
- Reactions:1
- Comments:5 (3 by maintainers)
Top Results From Across the Web
Angular Material table row (click) event triggered when ...
Try adding $event.stopPropagation() to one of the deeper click handlers (like on the cell). try doing something similar to this:
Read more >Present data in tables - Retool Docs
When you add tables to the Canvas, their columns are set to Auto. You can set column types manually by clicking on the...
Read more >Table | Quasar Framework
Dessert (100g serving) Calories Fat (g) Carbs (g) Protein (g) Sodium (mg) Ca...
Index: 4994 Cupcake 305 3.7 67 4.3 413 3%
Index: 4995 Gingerbread...
Read more >How to Use Tables (The Java™ Tutorials > Creating a GUI ...
Creating a Simple Table; Adding a Table to a Container ... The entire first row is selected, indicating that you have selected Kathy...
Read more >Overview of Excel tables - Microsoft Support
Excel table with header data, but not selected with the My table has headers ... Total row Once you add a total row...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@click:row
would be more in line with other componentsYou mean like this?