summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/pages/Controls/Samples/TBulletedList/Home.page
diff options
context:
space:
mode:
authorxue <>2006-01-03 00:15:59 +0000
committerxue <>2006-01-03 00:15:59 +0000
commit551cdfb76ddde47198106839747df9c1ef74e4fe (patch)
treeca519da9565df93e79a312c019801cb8aec5500c /demos/quickstart/protected/pages/Controls/Samples/TBulletedList/Home.page
parent4d8ed423f7b4a8eae2898cc5552829595717a581 (diff)
Added TBulletedList and its demos.
Diffstat (limited to 'demos/quickstart/protected/pages/Controls/Samples/TBulletedList/Home.page')
-rw-r--r--demos/quickstart/protected/pages/Controls/Samples/TBulletedList/Home.page69
1 files changed, 69 insertions, 0 deletions
diff --git a/demos/quickstart/protected/pages/Controls/Samples/TBulletedList/Home.page b/demos/quickstart/protected/pages/Controls/Samples/TBulletedList/Home.page
new file mode 100644
index 00000000..c5171868
--- /dev/null
+++ b/demos/quickstart/protected/pages/Controls/Samples/TBulletedList/Home.page
@@ -0,0 +1,69 @@
+<com:TContent ID="body">
+
+<h1>TBulletedList Samples</h1>
+
+<table class="sampletable">
+
+<tr>
+<td class="samplenote">
+Bulleted list with default settings:
+</td>
+<td class="sampleaction">
+<com:TBulletedList>
+ <com:TListItem Value="value 1" Text="item 1" />
+ <com:TListItem Value="value 2" Text="item 2" />
+ <com:TListItem Value="value 3" Text="item 3" />
+ <com:TListItem Value="value 4" Text="item 4" />
+</com:TBulletedList>
+</td>
+</tr>
+
+<tr>
+<td class="samplenote">
+Bulleted list with customized color, font, bullet style:
+</td>
+<td class="sampleaction">
+<com:TBulletedList
+ BulletStyle="UpperRoman"
+ FirstBulletNumber="5"
+ BackColor="silver"
+ Font.Size="12pt">
+ <com:TListItem Value="value 1" Text="item 1" />
+ <com:TListItem Value="value 2" Text="item 2" Selected="true" />
+ <com:TListItem Value="value 3" Text="item 3" />
+ <com:TListItem Value="value 4" Text="item 4" />
+</com:TBulletedList>
+</td>
+</tr>
+
+<tr>
+<td class="samplenote">
+Bulleted list of hyperlinks:
+</td>
+<td class="sampleaction">
+<com:TBulletedList DisplayMode="HyperLink" Target="_blank">
+ <com:TListItem Value="http://www.google.com/" Text="google" />
+ <com:TListItem Value="http://www.yahoo.com/" Text="yahoo" />
+ <com:TListItem Value="http://www.amazon.com/" Text="amazon" />
+</com:TBulletedList>
+</td>
+
+<tr>
+<td class="samplenote">
+Bulleted list of link buttons (click on them to see the result):
+</td>
+<td class="sampleaction">
+<com:TBulletedList DisplayMode="LinkButton" Click="buttonClicked">
+ <com:TListItem Value="http://www.google.com/" Text="google" />
+ <com:TListItem Value="http://www.yahoo.com/" Text="yahoo" />
+ <com:TListItem Value="http://www.amazon.com/" Text="amazon" />
+</com:TBulletedList>
+<com:TLabel ID="Result" ForeColor="red" />
+</td>
+
+</tr>
+
+
+</table>
+
+</com:TContent> \ No newline at end of file