summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/pages/Controls/Samples/TWizard/Sample5.php
blob: 1df3112000c83683fcc093717ecfc81020d364fd (plain)
1
2
3
4
5
6
7
8
9
10
11
<?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;
	}
}