diff options
author | xue <> | 2006-01-15 02:47:00 +0000 |
---|---|---|
committer | xue <> | 2006-01-15 02:47:00 +0000 |
commit | 2e5e2892506c87cf33aa8afb7681df3e6e646390 (patch) | |
tree | 80129a319e5eaf5e892c3c2d64b2d1d6bfe2ab24 /framework/Web/UI/WebControls | |
parent | 9e6f707e8e4614ca0d7dae698b7a0a9ffe7bd2da (diff) |
Diffstat (limited to 'framework/Web/UI/WebControls')
-rw-r--r-- | framework/Web/UI/WebControls/TDataList.php | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/framework/Web/UI/WebControls/TDataList.php b/framework/Web/UI/WebControls/TDataList.php index a3d76eca..ebaf9568 100644 --- a/framework/Web/UI/WebControls/TDataList.php +++ b/framework/Web/UI/WebControls/TDataList.php @@ -83,8 +83,8 @@ Prado::using('System.Web.UI.WebControls.TRepeatInfo'); * TDataList raises an {@link onItemCommand ItemCommand} whenever a button control
* within some TDataList item raises a <b>Command</b> event. If the command name
* is one of the followings: 'edit', 'update', 'select', 'delete', 'cancel' (case-insensitive),
- * another event will also be raised. For example, if the command name is 'select',
- * then the new event is {@link onSelectCommand SelectCommand}.
+ * another event will also be raised. For example, if the command name is 'edit',
+ * then the new event is {@link onEditCommand SelectCommand}.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @version $Revision: $ $Date: $
@@ -676,17 +676,6 @@ class TDataList extends TBaseDataList implements INamingContainer, IRepeatInfoUs }
/**
- * Raises <b>SelectCommand</b> event.
- * This method is invoked when a child control of the data list
- * raises an <b>Command</b> event and the command name is 'select' (case-insensitive).
- * @param TDataListCommandEventParameter event parameter
- */
- protected function onSelectCommand($param)
- {
- $this->raiseEvent('SelectCommand',$this,$param);
- }
-
- /**
* Raises <b>EditCommand</b> event.
* This method is invoked when a child control of the data list
* raises an <b>Command</b> event and the command name is 'edit' (case-insensitive).
|