blob: 24513118ec9ee18568736644a4ddbc9a2003b0ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?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;
}
}
}
|