summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/active-controls/protected/pages/ActiveButtonTest.php
blob: 6282b8046d5b0391953537de331e3ef2f42c4537 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

class ActiveButtonTest extends TPage
{
	function button2_onclick($sender, $param)
	{
		$this->label1->Text = "Button 1 was clicked ";
	}
	
	function button2_oncallback($sender, $param)
	{
		$this->label1->Text .= "using callback!";
	}
}

?>