コード例 #1
0
 function Render()
 {
     parent::Render();
     $strcombo = "<label for='{$this->Name}'>{$this->Caption}</label><select {$this->Attributes}>";
     $strcombo .= $this->RenderItems();
     $strcombo .= "</select>";
     return $strcombo;
 }
コード例 #2
0
 function Render()
 {
     parent::Render();
     $strcombo = "{$this->Caption}<br><table {$this->Attributes} cellpadding='3' cellspacing='0' border='1'>";
     $strcombo .= $this->RenderItems();
     $strcombo .= "</table>";
     return $strcombo;
 }
コード例 #3
0
 function Render()
 {
     parent::Render();
     $strcombo = "{$this->Caption}<table {$this->Attributes}>";
     $strcombo .= $this->RenderItems();
     $strcombo .= "</table>";
     return $strcombo;
 }