DataTables - Abrir todas as linhas filho no carregamento da página

No momento, minha tabela possui linhas filho com uma alternância para abrir cada linha na coluna 1. (Encontrei essa função online para gerenciar as linhas filho) como posso alterar isso para que as linhas filho estejam sempre abertas para que eu possa me livrar da coluna 1.https://jsfiddle.net/6k0bshb6/30/

// This function is for displaying data from HTML "data-child-value" tag in the Child Row.
function format(value) {
      return '<div>Hidden Value: ' + value + '</div>';
  }

// This function is for handling Child Rows.
    $('#example').on('click', 'td.details-control', function () {
          var tr = $(this).closest('tr');
          var row = dataTable.row(tr);

          if (row.child.isShown()) {
              // This row is already open - close it
              row.child.hide();
              tr.removeClass('shown');
          } else {
              // Open this row
              row.child(format(tr.data('child-value'))).show();
              tr.addClass('shown');
          }
    }); 

questionAnswers(1)

yourAnswerToTheQuestion