blob: a47a6a9d817422487702f949b146077d39b58c1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
prado::using ('System.Web.UI.ActiveControls.*');
class Ticket691 extends TPage
{
public function list_oncallback ($sender, $param)
{
$sender->Rating=$sender->SelectedIndex+1;
$this->Result->Text="You vote ".$sender->Rating;
}
}
?>
|