summaryrefslogtreecommitdiff
path: root/demos
diff options
context:
space:
mode:
authorxue <>2006-02-04 05:05:03 +0000
committerxue <>2006-02-04 05:05:03 +0000
commite7622f08814c6c7a1166addf9bc23c5780bd74b0 (patch)
tree67f9648fb6c9b62688a0acebb33d8788c506c13c /demos
parentf97358b8da7a2cbb1bf6438298286f7290616381 (diff)
Fixed a bug about performing databind with an empty dataset.
Diffstat (limited to 'demos')
-rw-r--r--demos/quickstart/protected/pages/Controls/Samples/TRepeater/Sample3.page2
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/quickstart/protected/pages/Controls/Samples/TRepeater/Sample3.page b/demos/quickstart/protected/pages/Controls/Samples/TRepeater/Sample3.page
index 115018ec..fde06a36 100644
--- a/demos/quickstart/protected/pages/Controls/Samples/TRepeater/Sample3.page
+++ b/demos/quickstart/protected/pages/Controls/Samples/TRepeater/Sample3.page
@@ -69,7 +69,7 @@ The following example allows users to modify the existing tabular data using a <
</prop:HeaderTemplate>
<prop:ItemTemplate>
-<tr style="<%# 'background-color:' . ($this->Parent->ItemIndex%2 ? 'silver' : 'green') %>">
+<tr style="<%# 'background-color:' . ($this->Parent->ItemIndex%2 ? '#BFCFFF' : '#E6ECFF') %>">
<td><%#$this->Parent->DataItem['id']%></td>
<td><%#$this->Parent->DataItem['name']%></td>
<td><%#$this->Parent->DataItem['category']%></td>