summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/pages/Controls/Samples/TWizard/Sample1.php
blob: 5d9bcb1de8a6a0af0dba62c10b4df99b764b7622 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php

class Sample1 extends TPage
{
	public function wizardCompleted($sender,$param)
	{
		$this->Result->Text="Your favorite color is: " . $this->DropDownList1->SelectedValue;
	}
}

?>