diff options
Diffstat (limited to 'tests/FunctionalTests')
-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 |