Capture double click on Yii’s CGridView row
I was using a simple Javascript code (attached to CGridView.selectionChanged
property) to capture click on any grid view’s row and redirect user to row-specific URL. I wanted to change it to double click only.
CGridView
exposes selectionChanged
even only, no click
or dblclick
, so that was a quite nice challenge. It seems that the only way is to capture this event yourself.