blob: 81d5ea27326468dccc725f82e6c3b53d433973b9 (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
<?php
class Home extends TPage
{
protected $data = array(
'PRADO',
'quickstart',
'tutorial',
'sample',
'for the',
'TJuiSortable',
'control',
);
public function onLoad($param)
{
if(!$this->IsPostback)
{
$this->repeater1->DataSource=$this->data;
$this->repeater1->dataBind();
$this->label1->setText('<i>none</i>');
}
}
public function repeater1_onStop($sender, $param)
{
$items = $param->getCallbackParameter()->index;
foreach ($items as $key => $index) $items[$key] = $this->data[$index];
$this->label1->Text = implode(' ', $items);
}
public function select1($sender, $param) {
$this->repeater1->getOptions()->disabled = $sender->getChecked();
}
public function select2($sender, $param) {
$this->repeater1->getOptions()->distance = $sender->getChecked() ? 100 : 0;
}
}
|