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