Ejemplo n.º 1
0
 public function GetAttributes($blnIncludeCustom = true, $blnIncludeAction = true)
 {
     $strToReturn = parent::GetAttributes($blnIncludeCustom, $blnIncludeAction);
     if ($this->intRows) {
         $strToReturn .= sprintf('size="%s" ', $this->intRows);
     }
     if ($this->strSelectionMode == QSelectionMode::Multiple) {
         $strToReturn .= 'multiple="multiple" ';
     }
     return $strToReturn;
 }