Prado\Web\UI\TControlAdapter::onPreRender PHP Method

onPreRender() public method

Default implementation calls the attached control's corresponding method.
public onPreRender ( $param )
    public function onPreRender($param)
    {
        $this->_control->onPreRender($param);
    }

Usage Example

 /**
  * Publish the ajax script
  */
 public function onPreRender($param)
 {
     parent::onPreRender($param);
 }