[ Index ] |
|
Code source de PRADO 3.0.6 |
1 <?php 2 3 class Home extends TPage 4 { 5 public function radiobuttonClicked($sender,$param) 6 { 7 $sender->Text="I'm clicked"; 8 } 9 10 public function selectRadioButton($sender,$param) 11 { 12 $selection=''; 13 if($this->Radio1->Checked) 14 $selection.='1'; 15 if($this->Radio2->Checked) 16 $selection.='2'; 17 if($this->Radio3->Checked) 18 $selection.='3'; 19 if($this->Radio4->Checked) 20 $selection.='4'; 21 if($selection==='') 22 $selection='empty'; 23 $this->Result->Text='Your selection is '.$selection; 24 } 25 } 26 27 ?>
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Sun Feb 25 21:07:04 2007 | par Balluche grâce à PHPXref 0.7 |