[eluser]Carlos Mora[/eluser]
well, things works again. It's a VERY strange ¿bug? :
if in IE7 we try $('#aTable').html(' <some contents' ) the spaces at the beggining makes IE fail and the table disapears. Removing the initial spaces in the partial corrected the problem.
Code:
function _buildTables() {
$data['records'] = $this->admin->getTables();
ob_start();
$this->load->view('admin/tablas_partial',$data);
$buffer = ob_get_contents();
@ob_end_clean();
// begin added
$buffer = trim( $buffer);
// end added
return $buffer;
}
Regards