blob: 8d7c66ceca85d99031613f5ad448c48e6aacdd8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?php
class Ticket745 extends TPage
{
public function wizardCompleted($sender,$param)
{
$this->Result->Text="Your favorite color is: " . $this->DropDownList1->SelectedValue;
}
}
?>
|