Use callbackColumn() but keep inline edit functionality

Is there a way in Grocery Crud Enterprise 3.2.4 use callbackColumn() (for example to display e-mail-addresses as clickable links) but keep the inline edit functionality (if necessary only when the double click hits the empty area in the cell around the link, I’d be OK with that)?

$crud->setTable('customers');

$crud->columns(['given_name', 'surname', 'email_address']);
$crud->fields(['given_name', 'surname', 'email_address']);
$crud->inlineEditFields(['given_name', 'surname', 'email_address']);
$crud->fieldType('given_name', 'string');
$crud->fieldType('surname', 'string');
$crud->fieldType('email_address', 'email');

$crud->callbackColumn('email_address', function($value, $row) {
  if (!empty($value)) {
    return '<a href="mailto:' . $value . '">' . $value . '</a>';
  }
});