blob: 1528fe949eb08fa7547cc83135f30e07108889b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php
Prado::using('System.Web.UI.TCommandEventParameter');
// $Id: Home.php 3189 2012-07-12 12:16:21Z ctrlaltca $
class Home extends TPage
{
public function buttonClicked($sender, $param)
{
if($param instanceof TCommandEventParameter)
$sender->Text="Name: {$param->CommandName}, Param: {$param->CommandParameter}";
else
$sender->Text="I'm clicked";
}
public function buttonCallback($sender, $param)
{
$sender->Text .= ' using callback';
}
}
|