blob: e7e65b86cb591ce8cb7d1d668c02d36e68232c68 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
class Ticket521 extends TPage
{
public function doOnClick($s, $p){
$this->label1->Text = "Button 1 was clicked ";
}
public function doSave($s, $p){
$this->label1->Text .= " on callback ";
}
}
?>
|