yo haria lo siguiente:
en la linea 33 agregar onclick
Código HTML:
Ver originaltbl += "
<th nowrap='nowrap'><input type='checkbox' id='chckHead' onclick='ChechkAll();'/>Seleccionar
</th>";
Luego creas una funcion con javascript que se llame ChechkAll usando jquery seleccionas todos los elementos que tienen la clase chcktbl y los marcas.
Código Javascript
:
Ver originalfunction ChechkAll()
{
$( ".chcktbl" ).each(function() {
this.attr('checked', true);
//$(this).attr('checked', true);
});
}
Saludos