summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/pages/JuiControls/Samples/TJuiResizable/Home.php
blob: 435b8a9b499551d364da5a9dd2441f0c73a2e7b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

class Home extends TPage
{
	protected function resize1_start($sender, $param)
	{
		$size=$param->getCallbackParameter()->size;
		$this->label1->Text.="<br/>Start: ".intval($size->width)." x ".intval($size->height);
	}

	protected function resize1_stop($sender, $param)
	{
		$size=$param->getCallbackParameter()->size;
		$this->label1->Text.="<br/>Stop: ".intval($size->width)." x ".intval($size->height);
	}
}