summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/pages/Controls/Samples/TMultiView/Home.php
blob: 24a240ca808c7a48c223755cd79f99ccdcfc9ba7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

class Home extends TPage
{
	public function viewChanged($sender,$param)
	{
		if($this->MultiView->ActiveViewIndex===2)
		{
			$this->Result1->Text="Your text input is: ".$this->Memo->Text;
			$this->Result2->Text="Your color choice is: ".$this->DropDownList->SelectedValue;
		}
	}
}

?>