summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/protected/pages/Ticket587.php
blob: 21ce7a647a01ef71b108c77605f999e5164552c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php
Prado::using('System.Web.UI.ActiveControls.*');
class Ticket587 extends TPage
{
	public function onTriggerCallback( $sender, $param )
	{
		$count = (int) $this->count->getText();
		$this->count->setText( ++$count );
	}
}

?>