blob: cf33dbbb4e60cae7c0a9da09728dfe5e3a6981f7 (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
<?php
/**
* TAutoComplete class file.
*
* @author Wei Zhuo <weizhuo[at]gamil[dot]com>
* @link http://www.pradosoft.com/
* @copyright Copyright © 2005-2014 PradoSoft
* @license http://www.pradosoft.com/license/
* @package Prado\Web\UI\ActiveControls
*/
namespace Prado\Web\UI\ActiveControls;
/**
* TAutCompleteEventParameter contains the {@link getToken Token} requested by
* the user for a partial match of the suggestions.
*
* The {@link getSelectedIndex SelectedIndex} is a zero-based index of the
* suggestion selected by the user, -1 if not suggestion is selected.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
* @package Prado\Web\UI\ActiveControls
* @since 3.1
*/
class TAutoCompleteEventParameter extends TCallbackEventParameter
{
private $_selectedIndex=-1;
/**
* Creates a new TCallbackEventParameter.
*/
public function __construct($response, $parameter, $index=-1)
{
parent::__construct($response, $parameter);
$this->_selectedIndex=$index;
}
/**
* @return int selected suggestion zero-based index, -1 if not selected.
*/
public function getSelectedIndex()
{
return $this->_selectedIndex;
}
/**
* @return string token for matching a list of suggestions.
*/
public function getToken()
{
return $this->getCallbackParameter();
}
}
|