tochoromero / aurelia-table

Simple functional data table for Aurelia
https://tochoromero.github.com/aurelia-table
MIT License
67 stars 25 forks source link

Selection not compatible with dblclick.trigger #26

Closed Robbe64 closed 7 years ago

Robbe64 commented 7 years ago

I wanted to open a detail dialog of a row by doubleclicking the entry. Unfortunately the row is already unselected when the dblclick event is fired.

<tr repeat.for="user of $displayData" aut-select="row.bind: user; mode: single; selected-class: info" select.delegate="rowSelected($event)" dblclick.trigger="double()">

Robbe64 commented 7 years ago

Ok, I see its easy to solve with Custom Selection :)