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

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