diff options
author | xue <> | 2006-02-03 22:17:33 +0000 |
---|---|---|
committer | xue <> | 2006-02-03 22:17:33 +0000 |
commit | 979430b5bf60e5857846ecb561404a89c02cefcd (patch) | |
tree | cc8d51f086da6b36542e5ee9622329590fc72733 /framework/Web/UI/WebControls/TStyle.php | |
parent | baac41fc1e52c2902feabf778915195042b196b0 (diff) |
Completed datagrid tutorial part one and added a new datagrid sample.
Diffstat (limited to 'framework/Web/UI/WebControls/TStyle.php')
-rw-r--r-- | framework/Web/UI/WebControls/TStyle.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/Web/UI/WebControls/TStyle.php b/framework/Web/UI/WebControls/TStyle.php index dac862a6..ab7e8568 100644 --- a/framework/Web/UI/WebControls/TStyle.php +++ b/framework/Web/UI/WebControls/TStyle.php @@ -645,7 +645,7 @@ class TTableItemStyle extends TStyle public function addAttributesToRender($writer)
{
if(!$this->getWrap())
- $writer->addStyleAttribute('nowrap','nowrap');
+ $writer->addStyleAttribute('white-space','nowrap');
if(($horizontalAlign=$this->getHorizontalAlign())!=='NotSet')
$writer->addAttribute('align',strtolower($horizontalAlign));
|