From 5892bb8bb76f7e4addd14da5dd9c5a68b6c59db9 Mon Sep 17 00:00:00 2001 From: xue <> Date: Sat, 6 Oct 2007 21:05:39 +0000 Subject: Added TDataRenderer and TItemDataRenderer --- .../Web/UI/WebControls/TRepeaterItemRenderer.php | 82 ++-------------------- 1 file changed, 5 insertions(+), 77 deletions(-) (limited to 'framework/Web/UI/WebControls/TRepeaterItemRenderer.php') diff --git a/framework/Web/UI/WebControls/TRepeaterItemRenderer.php b/framework/Web/UI/WebControls/TRepeaterItemRenderer.php index fa0b2aca..b37f685a 100644 --- a/framework/Web/UI/WebControls/TRepeaterItemRenderer.php +++ b/framework/Web/UI/WebControls/TRepeaterItemRenderer.php @@ -11,96 +11,24 @@ */ Prado::using('System.Web.UI.WebControls.TRepeater'); +Prado::using('System.Web.UI.WebControls.TItemDataRenderer'); /** * TRepeaterItemRenderer class * * TRepeaterItemRenderer can be used as a convenient base class to - * define an item renderer class for {@link TRepeater}. + * define an item renderer class specific for {@link TRepeater}. * - * Because TRepeaterItemRenderer extends from {@link TTemplateControl}, derived child classes - * can have templates to define their presentational layout. + * TRepeaterItemRenderer extends {@link TItemDataRenderer} and implements + * the bubbling scheme for the OnCommand event of repeater items. * - * TRepeaterItemRenderer implements {@link IItemDataRenderer} interface, - * which enables the following properties that are related with data-bound controls: - * - {@link getItemIndex ItemIndex}: zero-based index of this control in the repeater item collection. - * - {@link getItemType ItemType}: item type of this control, such as TListItemType::AlternatingItem - * - {@link getData Data}: data associated with this control - * @author Qiang Xue * @version $Id$ * @package System.Web.UI.WebControls * @since 3.1.0 */ -class TRepeaterItemRenderer extends TTemplateControl implements IItemDataRenderer +class TRepeaterItemRenderer extends TItemDataRenderer { - /** - * index of the data item in the Items collection of repeater - */ - private $_itemIndex; - /** - * type of the TRepeaterItem - * @var TListItemType - */ - private $_itemType; - /** - * data associated with this item - * @var mixed - */ - private $_data; - - /** - * @return TListItemType item type - */ - public function getItemType() - { - return $this->_itemType; - } - - /** - * @param TListItemType item type. - */ - public function setItemType($value) - { - $this->_itemType=TPropertyValue::ensureEnum($value,'TListItemType'); - } - - /** - * Returns a value indicating the zero-based index of the item in the corresponding data control's item collection. - * If the item is not in the collection (e.g. it is a header item), it returns -1. - * @return integer zero-based index of the item. - */ - public function getItemIndex() - { - return $this->_itemIndex; - } - - /** - * Sets the zero-based index for the item. - * If the item is not in the item collection (e.g. it is a header item), -1 should be used. - * @param integer zero-based index of the item. - */ - public function setItemIndex($value) - { - $this->_itemIndex=TPropertyValue::ensureInteger($value); - } - - /** - * @return mixed data associated with the item - */ - public function getData() - { - return $this->_data; - } - - /** - * @param mixed data to be associated with the item - */ - public function setData($value) - { - $this->_data=$value; - } - /** * This method overrides parent's implementation by wrapping event parameter * for OnCommand event with item information. -- cgit v1.2.3