blob: c66611829ec470e840745f0d73a47f7ad1ebc6db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<?php
class RatingList extends TPage
{
function list1_oncallback($sender, $param)
{
}
function button1_clicked($sender, $param)
{
$this->list1->Enabled = true;
}
function button2_clicked($sender, $param)
{
$this->list1->Enabled=false;
}
function button5_clicked($sender, $param)
{
$this->list1->SelectedIndex=3;
}
}
?>
|