diff options
author | xue <> | 2006-01-11 05:35:34 +0000 |
---|---|---|
committer | xue <> | 2006-01-11 05:35:34 +0000 |
commit | c2981557f2112fbf93267058ad7f9c361bf2f180 (patch) | |
tree | faaa67bcc9d093f839457fb91e59c2bcbbaeb22f /framework/Web/UI/TTemplateManager.php | |
parent | dc26c8808c55c60dec31a87d52e028cfa9fea46c (diff) |
Fixed many issues with DataBoundControls. Added Prado Composer Demo (not done yet).
Diffstat (limited to 'framework/Web/UI/TTemplateManager.php')
-rw-r--r-- | framework/Web/UI/TTemplateManager.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/framework/Web/UI/TTemplateManager.php b/framework/Web/UI/TTemplateManager.php index bd838db2..b6a9abd8 100644 --- a/framework/Web/UI/TTemplateManager.php +++ b/framework/Web/UI/TTemplateManager.php @@ -231,9 +231,10 @@ class TTemplate extends TComponent implements ITemplate * @param TControl the parent control
* @throws TTemplateRuntimeException if an error is encountered during the instantiation.
*/
- public function instantiateIn($tplControl)
+ public function instantiateIn($tplControl,$page=null)
{
- $page=$tplControl->getPage();
+ if($page===null)
+ $page=$tplControl->getPage();
$this->_assetManager=$page->getService()->getAssetManager();
$controls=array();
foreach($this->_tpl as $key=>$object)
|