Is it possible to show hidden details onload instead of hide

Is it possible to show hidden details onload instead of hide

squshipillowsqushipillow Posts: 1Questions: 1Answers: 0

I would like this to do the opposite (always show details and on click hide them

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

This discussion has been closed.