blob: bfd23998bdb83eba890cb914e51cbd22cbb4f2c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
Prado::using('System.Web.UI.ActiveControls.*');
class Issue216 extends TPage
{
public function buttonClickCallback($sender, $param)
{
$this->result->setText('Tab ActiveIndex is : '.$this->tabpanel->ActiveViewIndex);
}
}
|