Código PHP:
<table id="myTable" >
<tr>
<th colspan="3"><?php echo $this->escape($this->title); ?></th>
</tr>
<tr>
<th>CODIGO TIPO CLIENTE</th>
<th>TIPO CLIENTE</th>
<th>DESCRIPCION</th>
</tr>
<!-- recorro el arreglo de datos-->
<?php foreach ($this->tipoclientes as $tipocliente) : ?>
<!-- por cada fila, muestro sus datos -->
<tr>
<td><?php echo $this->escape($tipocliente->COD_TIPO_CLIENTE); ?></td>
<td><?php echo $this->escape($tipocliente->TIPO_CLIENTE); ?></td>
<td><?php echo $this->escape($tipocliente->DESCRIPCION_TIPO_CLIENTE); ?></td>
</tr>
<?php endforeach; ?>
oSettings.aaSorting[i][1] = oColumn.asSorting[0];
pero si la tabla ya esta consturida no hay ese tipo de error, porque es mi error gracias por su ayuda