diff options
author | Ca-Phun Ung <pazu2k@gmail.com> | 2008-09-09 08:23:29 +0000 |
---|---|---|
committer | Ca-Phun Ung <pazu2k@gmail.com> | 2008-09-09 08:23:29 +0000 |
commit | accc76bc64e8844153954868258b9dd59b9ba294 (patch) | |
tree | 43e515107bfdd95acac4474ab92b207a4cf173f2 /tests/visual | |
parent | 48cce41f39cc040dbe0d20a34b32d688cd31099e (diff) | |
download | jquery-ui-accc76bc64e8844153954868258b9dd59b9ba294.tar.gz jquery-ui-accc76bc64e8844153954868258b9dd59b9ba294.zip |
Spinner: added an init callback which exposes the addItem method for dynamic population of spinner via an external objects.
Diffstat (limited to 'tests/visual')
-rw-r--r-- | tests/visual/spinner.html | 37 |
1 files changed, 36 insertions, 1 deletions
diff --git a/tests/visual/spinner.html b/tests/visual/spinner.html index 9a1478ea5..f166810c3 100644 --- a/tests/visual/spinner.html +++ b/tests/visual/spinner.html @@ -10,12 +10,34 @@ <script type="text/javascript">
$(function(){
+ var itemList = [
+ {url: "http://ejohn.org", title: "John Resig"},
+ {url: "http://bassistance.de/", title: "Jörn Zaefferer"},
+ {url: "http://snook.ca/jonathan/", title: "Jonathan Snook"},
+ {url: "http://rdworth.org/", title: "Richard Worth"},
+ {url: "http://www.paulbakaus.com/", title: "Paul Bakaus"},
+ {url: "http://www.yehudakatz.com/", title: "Yehuda Katz"},
+ {url: "http://www.azarask.in/", title: "Aza Raskin"},
+ {url: "http://www.karlswedberg.com/", title: "Karl Swedberg"},
+ {url: "http://scottjehl.com/", title: "Scott Jehl"},
+ {url: "http://jdsharp.us/", title: "Jonathan Sharp"},
+ {url: "http://www.kevinhoyt.org/", title: "Kevin Hoyt"},
+ {url: "http://www.codylindley.com/", title: "Cody Lindley"},
+ {url: "http://malsup.com/jquery/", title: "Mike Alsup"}
+ ];
var opts = {
's1': {},
's2': {stepping: 0.25},
's3': {currency: '$'},
- 's4': {}
+ 's4': {},
+ 's5': {
+ init: function(ui) {
+ for (var i=0; i<itemList.length; i++) {
+ ui.add(itemList[i].title +' <a href="'+ itemList[i].url +'" target="_blank">»</a>');
+ }
+ }
+ }
};
for (var n in opts)
@@ -181,5 +203,18 @@ label { <hr />
+<p><label for="s5">Presenters: </label>
+<div id="s5"></div>
+
+<p>
+<button id="s5-disable">disable</button>
+<button id="s5-enable">enable</button>
+<button id="s5-destroy">destroy</button>
+<button id="s5-create">create</button>
+</p>
+
+<hr />
+
+
</body>
</html>
\ No newline at end of file |