blob: dbdf2cab5ebfe414cb36a67a2b18e70f71659b6b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
/*
* Created on 13/04/2006
*/
class Ticket93 extends TPage
{
public function buttonClicked($sender,$param)
{
echo 'postback triggered with value '.$param->PostBackValue;
}
}
?>
|