VERSION:
I am using Angular ui-grid version 3.0.0-RC.18 (http://ui-grid.info/).
PROBLEM
I want to implement a double-c
The solution with custom rowTemplate works fine. I've found a more elegant solution which adds the event to the 'ui-grid/ui-grid-row' template:
rowTemplate : $templateCache.get('ui-grid/ui-grid-row').replace("
The double click event handler would be something like this:
$scope.onRowDblClick = function (row) {
if (row && row.entity) {
//insert your custom code
}
};
You'll have to add the dependency to $templateCache in your controller.