diff options
author | xue <> | 2006-06-04 04:20:29 +0000 |
---|---|---|
committer | xue <> | 2006-06-04 04:20:29 +0000 |
commit | af6a5a01a2d847a38189bb471c541eb1e7593bc7 (patch) | |
tree | d648b471f164a890236b9d6fd4f3908c272a573f /framework/Web | |
parent | bcda10ab01047c7cce425e6894dc76a356c21fc4 (diff) |
Fixed a bug of raising OnTextChanged event.
Diffstat (limited to 'framework/Web')
-rw-r--r-- | framework/Web/UI/WebControls/TListControl.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/framework/Web/UI/WebControls/TListControl.php b/framework/Web/UI/WebControls/TListControl.php index 91c7823d..2953f380 100644 --- a/framework/Web/UI/WebControls/TListControl.php +++ b/framework/Web/UI/WebControls/TListControl.php @@ -586,6 +586,7 @@ abstract class TListControl extends TDataBoundControl public function onSelectedIndexChanged($param)
{
$this->raiseEvent('OnSelectedIndexChanged',$this,$param);
+ $this->onTextChanged($param);
}
/**
|