blob: 9afaf28fe6f013ae7d22d8a7d2d34e1fd150de8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
Prado::using('System.Web.UI.ActiveControls.*');
class Ticket526 extends TPage
{
public function callback($s, $p)
{
$this->dp->Mode="Button";
$this->textbox->Text = 'callback';
$this->activePanel->Enabled="false";
$this->activePanel->render($p->NewWriter);
}
}
?>
|