summaryrefslogtreecommitdiff
path: root/framework/Web/UI/WebControls/TBulletedList.php
diff options
context:
space:
mode:
Diffstat (limited to 'framework/Web/UI/WebControls/TBulletedList.php')
-rw-r--r--framework/Web/UI/WebControls/TBulletedList.php6
1 files changed, 2 insertions, 4 deletions
diff --git a/framework/Web/UI/WebControls/TBulletedList.php b/framework/Web/UI/WebControls/TBulletedList.php
index 8857ecb1..233ace4e 100644
--- a/framework/Web/UI/WebControls/TBulletedList.php
+++ b/framework/Web/UI/WebControls/TBulletedList.php
@@ -254,10 +254,7 @@ class TBulletedList extends TListControl implements IPostBackEventHandler
foreach($this->getItems() as $index=>$item)
{
if($item->getHasAttributes())
- {
- foreach($item->getAttributes() as $name=>$value)
- $writer->addAttribute($name,$value);
- }
+ $writer->addAttributes($item->getAttributes());
$writer->renderBeginTag('li');
$this->renderBulletText($writer,$item,$index);
$writer->renderEndTag();
@@ -338,6 +335,7 @@ class TBulletedList extends TListControl implements IPostBackEventHandler
$options['EventTarget'] = $this->getUniqueID();
$options['EventParameter'] = $this->_currentRenderItemIndex;
$options['ID'] = $this->getClientID().$this->_currentRenderItemIndex;
+ $options['StopEvent'] = true;
return $options;
}