/**
  * Fix hide attribute and spans
  */
 function fixHideAndSpans()
 {
     include_once "./Services/COPage/classes/class.ilPCTable.php";
     $table_obj = new ilPCTable($this->dom);
     $table_obj->setNode($this->table_pc_node);
     $table_obj->readHierId();
     $table_obj->readPCId();
     $table_obj->fixHideAndSpans();
 }