Boa noite,
Estou tentando usar o Datatable mas o código simplesmente para de funcionar quando há mais do que 5 colunas, alguém poderia me ajudar?
A partir da sexta coluna, recebo no console: Uncaught TypeError: Cannot read property ‘className’ of undefined jquery.dataTables.min.js:27~
//scripts
<script type="text/javascript" src="scripts/jquery.dataTables.min.js"></script>
<script>
$(document).ready(function() {
oTable = $('#boletosVencidos').dataTable({
"bJQueryUI": true
});
} );
</script>
//table
<table cellpadding="0" cellspacing="0" border="0" id="boletosVencidos">
<thead>
<tr>
<th>Beneficiario</th>
<th>Vencimento</th>
<th>Dt Limite Pagto</th>
<th>Valor Original</th>
<th>Valor Atual</th>
<th>Valor Atual</th>
</tr>
</thead>
<tbody>
<tr>
<td>Trident</td>
<td>Internet Explorer 4.0</td>
<td>Win 95+</td>
<td>4</td>
<td>X</td>
</tr>
<tr>
<td>Trident</td>
<td>Internet Explorer 5.0</td>
<td>Win 95+</td>
<td>5</td>
<td>C</td>
</tr>
</tbody>
</table>
Agradeço desde já.