/**
  * Preserialize the columns, since some columns might have references to the form.
  */
 public function Sleep()
 {
     if ($this->objColumnArray) {
         foreach ($this->objColumnArray as $objColumn) {
             $objColumn->Sleep();
         }
     }
     $this->objRowParamsCallback = QControl::SleepHelper($this->objRowParamsCallback);
     parent::Sleep();
 }