summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/pages/JuiControls/Samples/TJuiSortable/Home.php
blob: 4b3a0ff45f7d7a984f0d06289b704bfac12ed43b (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
<?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();
		}
	}

	public function repeater1_onSort($sender, $param)
	{
		$this->label1->Text="Items order:";
		$order = $param->getOrder();
		foreach($order as $index)
			$this->label1->Text.=' '.$this->data[$index];
	}
}