blob: 5e2430659f953f035d81f1950fa2f46ffa8ec1dc (
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
54
55
56
57
58
59
60
61
62
63
64
|
<?php
class TDropDownList extends TListControl implements IPostBackDataHandler
{
protected function addAttributesToRender($writer)
{
$writer->addAttribute('name',$this->getUniqueID());
parent::addAttributesToRender($writer);
}
public function loadPostData($key,$values)
{
//TODO: Need to doublecheck!!@!
if(!$this->getEnabled(true))
return false;
$selections=isset($values[$key])?$values[$key]:null;
$this->ensureDataBound();
if($selections!==null)
{
$items=$this->getItems();
$selection=is_array($selections)?$selections[0]:$selections;
$index=$items->findIndexByValue($selection,false);
if($this->getSelectedIndex()!==$index)
{
$this->setSelectedIndex($index);
return true;
}
else
return false;
}
else if($this->getSelectedIndex()!==-1)
{
$this->clearSelection();
return true;
}
else
return false;
}
public function raisePostDataChangedEvent()
{
$page=$this->getPage();
if($this->getAutoPostBack() && !$page->getPostBackEventTarget())
{
$page->setPostBackEventTarget($this);
if($this->getCausesValidation())
$page->validate($this->getValidationGroup());
}
$this->onSelectedIndexChanged(null);
}
public function getSelectedIndex()
{
$index=parent::getSelectedIndex();
if($index<0 && $this->getItems()->getCount()>0)
{
$this->setSelectedIndex(0);
return 0;
}
else
return $index;
}
}
?>
|