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

class Home extends TPage
{
	public function checkTxtValue($sender,$param)
	{
		$this->label1->Text=date("[H:i:s]")." Textbox changed";
	}
}