Ejemplo n.º 1
0
 function setAttribute($sName, $sValue)
 {
     if ('disabled' == $sName) {
         if ('disabled' == $sValue) {
             foreach (array_keys($this->aPartners) as $sKey) {
                 $objPartner =& $this->aPartners[$sKey];
                 $objPartner->setAttribute('disabled', 'false');
             }
         }
     }
     xajaxControl::setAttribute($sName, $sValue);
 }