Hi,
thanks for your question, and sorry for the trouble.
Yes, this should be possible with a small modification in the “tablepress-datatables-row-details.php” file. In lines 200 and 201, please change
{$name}.find('tbody').on( 'click', '.row-details-toggle div', function() {
var row = $(this).toggleClass('row-details-open').toggleClass('row-details-close').parents('tr').toggleClass('row-details-row-open')[0];
to
{$name}.find('tbody').on( 'click', 'tr', function() {
var row = $(this).find('.row-details-toggle div').toggleClass('row-details-open').toggleClass('row-details-close').parents('tr').toggleClass('row-details-row-open')[0];
Regards,
Tobias