blob: 1cdd5d739a6a57f2bf9c23d81f2fb1d1ceb1fc0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<?php
/*
* Created on 29/04/2006
*/
class TActiveControlAdapter extends TControlAdapter
{
private static $_renderedPosts = false;
/**
* Render the callback request post data loaders once only.
*/
public function render($writer)
{
if(!self::$_renderedPosts)
{
$cs = $this->getPage()->getClientScript();
$cs->registerPradoScript('ajax');
$options = TJavascript::encode($this->getPage()->getPostDataLoaders(),false);
$script = "Prado.CallbackRequest.PostDataLoaders = {$options};";
$cs->registerEndScript(get_class($this), $script);
self::$_renderedPosts = true;
}
parent::render($writer);
if($this->getPage()->getIsCallback())
$this->getPage()->getCallbackClient()->replace($this->getControl(), $writer);
}
}
?>
|