blob: 6f6db6f8876321012f072734a97b01378a08bd84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
<html>
<head>
<style type="text/css">
@import "../../resources/dojo.css";
</style>
<script type="text/javascript"
djConfig="isDebug: true, dojoIframeHistoryUrl: '../../resource/blank.html'"
src="../../dojo.js"></script>
<script type="text/javascript">
dojo.require("dojo.io.iframe");
var callCount = 0;
var ioResponse;
function sendIt(){
dojo.io.iframe.send({
form: dojo.byId("uploadForm"),
handleAs: "application/json",
content: {
increment: callCount++,
fileFields: "ul1"
},
handle: function(response, ioArgs){
if(response instanceof Error){
console.debug("Request FAILED: ", response);
}else{
console.debug("Request complete: ", response);
}
ioResponse = response; // to get at afterwards in debugger.
}
});
}
</script>
</head>
<body>
<p>This file tests dojo.io.iframe upload using a form POST with a file upload button.</p>
<p>
<b>Note:</b> This test makes a form POST to upload.cgi. This cgi needs to be made executable for this test to work, and it won't work from local disk.
</p>
<form action="upload.cgi" id="uploadForm"
method="POST" enctype="multipart/form-data">
<input type="text" name="foo" value="bar">
<input type="file" name="ul1">
<input type="button" onclick="sendIt(); return false;" value="send it!">
</form>
</body>
</html>
|