diff options
author | wei <> | 2006-02-15 07:44:51 +0000 |
---|---|---|
committer | wei <> | 2006-02-15 07:44:51 +0000 |
commit | 6e29b055b3cbc2a46e29075608c7e82a328d5270 (patch) | |
tree | 13a197ad850f360125a96f5de83f1742a12e98ad /tests/FunctionalTests/protected/pages | |
parent | d653bda6c6217f160a4de77e3f2f0ee62096be67 (diff) |
Adding new TRatingList component.
Diffstat (limited to 'tests/FunctionalTests/protected/pages')
-rw-r--r-- | tests/FunctionalTests/protected/pages/UI/RatingList.page | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/FunctionalTests/protected/pages/UI/RatingList.page b/tests/FunctionalTests/protected/pages/UI/RatingList.page new file mode 100644 index 00000000..8ccd4fdb --- /dev/null +++ b/tests/FunctionalTests/protected/pages/UI/RatingList.page @@ -0,0 +1,22 @@ +<com:TContent ID="Content">
+<h1>TRatingList Examples</h1>
+
+<h2>Default TRatingList</h2>
+ <com:TRatingList>
+ <com:TListItem Text="Fair" />
+ <com:TListItem Text="Average" />
+ <com:TListItem Text="Good" />
+ <com:TListItem Text="Execellent" />
+ </com:TRatingList>
+
+<h2>TRatingList with SelectedIndex="2"</h2>
+ <com:TRatingList SelectedIndex="2">
+ <com:TListItem Text="Poor" />
+ <com:TListItem Text="Fair" />
+ <com:TListItem Text="Average" />
+ <com:TListItem Text="Good" />
+ <com:TListItem Text="Execellent" />
+ <com:TListItem Text="Super" />
+ </com:TRatingList>
+
+</com:TContent>
\ No newline at end of file |