diff options
author | xue <> | 2006-02-04 23:56:29 +0000 |
---|---|---|
committer | xue <> | 2006-02-04 23:56:29 +0000 |
commit | 139ca38ddcf4998c882cfc98cb932524de210d86 (patch) | |
tree | 99471fff9e2db46d01e5473cfd5c1566c7c1209a /framework/Web/UI/WebControls/TDataBoundControl.php | |
parent | 97d5ad831a6003418562b7f44e9a08e562d88a0c (diff) |
Modified TDataGrid sample to enable updating rating.
Diffstat (limited to 'framework/Web/UI/WebControls/TDataBoundControl.php')
-rw-r--r-- | framework/Web/UI/WebControls/TDataBoundControl.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/framework/Web/UI/WebControls/TDataBoundControl.php b/framework/Web/UI/WebControls/TDataBoundControl.php index b7294383..0bb771bf 100644 --- a/framework/Web/UI/WebControls/TDataBoundControl.php +++ b/framework/Web/UI/WebControls/TDataBoundControl.php @@ -196,7 +196,8 @@ abstract class TDataBoundControl extends TWebControl $this->dataBindProperties();
$this->onDataBinding(null);
$data=$this->getData();
- $this->performDataBinding($data);
+ if($data instanceof Traversable)
+ $this->performDataBinding($data);
$this->setIsDataBound(true);
$this->onDataBound(null);
}
|