summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/pages/ActiveControls/Samples/TInPlaceTextBox/Home.php
blob: 5c132fd69227f03b1b52cd90744d49c2a9a92cea (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php

class Home extends TPage
{
	public function textChanged($sender,$param)
	{
		$this->label1->Text=$this->txt1->Text;
	}
}

?>