blob: baca5d7a63f9596d9594007d5824afcaa51978a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?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);
}
}
|