-
-
Save phiggins42/636bd317f8ed31b87887 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Dojo Test</title> | |
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/dojo/1.5/dijit/themes/claro/claro.css"> | |
<script src="http://ajax.googleapis.com/ajax/libs/dojo/1.5/dojo/dojo.xd.js.uncompressed.js" djConfig="parseOnLoad:true"></script> | |
<script type="text/javascript"> | |
dojo.require('dijit.form.FilteringSelect'); | |
</script> | |
</head> | |
<body class="claro"> | |
<select name="players" id="players" dojoType="dijit.form.FilteringSelect" autoComplete="true" pageSize="10"> | |
<option value="">Select an Arsenal Player</option> | |
<option value="Arshavin" selected="selected">Andrey Arshavin</option> | |
<option value="Vermaelen">Thomas Vermaelen</option> | |
</select> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment