diff options
author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-11-13 09:49:11 +0000 |
---|---|---|
committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-11-13 09:49:11 +0000 |
commit | e44a7e37b6c7b5961adaffc62b9042b8d442938e (patch) | |
tree | 95b67c356e93163467db2451f2b8cce84ed5d582 /includes/js/dojo/tests/io/iframeUploadTest.html | |
parent | a62b9742ee5e28bcec6872d88f50f25b820914f6 (diff) | |
download | semanticscuttle-e44a7e37b6c7b5961adaffc62b9042b8d442938e.tar.gz semanticscuttle-e44a7e37b6c7b5961adaffc62b9042b8d442938e.tar.bz2 |
New feature: basic Ajax suggestion for tags and implementation of Dojo toolkit
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@151 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'includes/js/dojo/tests/io/iframeUploadTest.html')
-rw-r--r-- | includes/js/dojo/tests/io/iframeUploadTest.html | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/includes/js/dojo/tests/io/iframeUploadTest.html b/includes/js/dojo/tests/io/iframeUploadTest.html new file mode 100644 index 0000000..6f6db6f --- /dev/null +++ b/includes/js/dojo/tests/io/iframeUploadTest.html @@ -0,0 +1,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> + |