Prado\Web\UI\WebControls\TFlushOutput::render PHP Метод

render() публичный Метод

Flushes the output of all completely rendered controls to the client.
public render ( $writer )
    public function render($writer)
    {
        //$writer->write('<!-- flush -->');
        // ajax responses can't be parsed by the client side before loaded and returned completely,
        // so don't bother with flushing output somewhere mid-page if refreshing in a callback
        if (!$this->Page->IsCallback) {
            $this->Page->flushWriter();
            //			$this->Application->flushOutput($this->ContinueBuffering);
        }
    }