Deberías ocultar y/o mostrar todos los elementos dentro de ese row? Si es así, simplemente podés hacer algo así (te hago una estructura simplificada para que entiendas mi idea):
Código HTML:
<html>
<body>
<table border="1">
<thead>
<tr>
<th>pri</th>
<th>seg</th>
</tr>
</thead>
<tr id="oculto">
<td>1</td>
<td>2</td>
</tr>
<tr>
<td>1.1</td>
<td>1.2</td>
</tr>
</table>
<script type="text/javascript">
var ocultoTags = document.getElementById('oculto').getElementsByTagName('td');
for(var a = 0; a < ocultoTags.length; a++) {
ocultoTags[a].style.display = 'none';
}
</script>
</body>
</html>
De esta manera sólo ocultas los td y no los tr para que no se rompa la maquetación de tu tabla.