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

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