10 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<html>
<head>
<title>Dojo</title>
<script type="text/javascript" src="/js/dojo/dojo.js"></script>
<script type="text/javascript">
dojo.require("dojo.widget.ComboBox");
</script>
</head>
<body>
<select
dojoType="ComboBox"
dataUrl="dojo-autocompleter.json"
maxListLength="10"
style="width:200px;">
</select>
</body>
</html>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
[
["Januar", "1"],
["Februar", "2"],
["März", "3"],
["April", "4"],
["Mai", "5"],
["Juni", "6"],
["Juli", "7"],
["August", "8"],
["September", "9"],
["Oktober", "10"],
["November", "11"],
["Dezember", "12"]
]
1
2
3
4
5
6
<html>
<head>
<title>Dojo</title>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
...
1
2
3
4
5
6
7
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Unbenanntes Dokument</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
10 Einträge, 1 Seite |