Changeset 2948
- Timestamp:
- 07/23/08 18:15:29 (1 month ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/utils/copix/taglib/popupinformation.templatetag.php
r2928 r2948 42 42 $width = $this->getParam ('width'); 43 43 $id = uniqid ('popupInformation'); 44 $zoneajax = ($this->getParam ('zoneajax', 'true') == 'true'); 44 45 $template = $this->getParam ('template', 'generictools|popupinformation.tpl'); 45 46 $templateParams = array ( … … 54 55 'popuptitle' => $title, 55 56 'id' => $id, 56 'width' => $width 57 'width' => $width, 58 'zoneajax' => $zoneajax 57 59 ); 58 60 … … 98 100 $zone = $pParams['zone']; 99 101 unset ($pParams['zone']); 100 $content = _tag ('copixzone', array_merge ($this->getExtraParams (), array ('onComplete'=>'$(\'div'.$id.'\').fireEvent(\'sync\');','process'=>$zone,'ajax'=> true, 'id'=>'zone_'.$id)));102 $content = _tag ('copixzone', array_merge ($this->getExtraParams (), array ('onComplete'=>'$(\'div'.$id.'\').fireEvent(\'sync\');','process'=>$zone,'ajax'=>$zoneajax, 'id'=>'zone_'.$id))); 101 103 } else { 102 104 $content = $pContent;
