summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/active-controls/protected/pages/ActiveTextBoxCallback.php
blob: c3f729e5345985896bd70338d70327d1a75f5d16 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php

class ActiveTextBoxCallback extends TPage
{
	function textbox1_callback($sender, $param)
	{
		$this->label1->Text = 'Label 1: '.$sender->Text;
	}
}

?>