/**
  * 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();
 }
 /**
  * Check the binder for a reference to the form.
  */
 public function Sleep()
 {
     $this->objDataBinder = QControl::SleepHelper($this->objDataBinder);
     parent::Sleep();
 }
Пример #3
0
 public function Sleep()
 {
     $this->drawingCallback = \QControl::SleepHelper($this->drawingCallback);
     parent::Sleep();
 }
Пример #4
0
 public function Sleep()
 {
     $this->itemParamsCallback = \QControl::SleepHelper($this->itemParamsCallback);
     parent::Sleep();
 }
 /**
  * Fix up possible embedded references to the form.
  */
 public function Sleep()
 {
     $this->mixText = QControl::SleepHelper($this->mixText);
     $this->mixDestination = QControl::SleepHelper($this->mixDestination);
     $this->getVars = QControl::SleepHelper($this->getVars);
     $this->tagAttributes = QControl::SleepHelper($this->tagAttributes);
     parent::Sleep();
 }