summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/protected/pages/Ticket526.php
blob: 1500ad7337bb5b0dce540770a98d1b63bd3d7c53 (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);
	}
}

?>