hi, my name is Jhonny..

First i want to say thank you very much to Lothar Kaiser that have help me a 
lot..

i want to ask something again  ...
now, i am making an small application.
In this application, the client can download data like *.txt, *.jpg and the 
other from the server..
how to make the download process?

i have read something about qx.io.remote.Request, but i dont understand..
is it true if qx.io.remote.Request can make download process?

My simple code : 

<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Quickstart</title>

    <script type="text/javascript">
       qxsettings = { "qx.application" : "Application" };
    </script>
    <script type="text/javascript" src="script/qx.js"></script>
    
    <script type="text/javascript">
        qx.Class.define("Application",
        {
            extend : qx.application.Gui,

            members :
            {
                main : function()
                {
 
                    this.base(arguments);
                    var button1 = new qx.ui.form.Button("Download");

                     button1.addToDocument();

                    button1.addEventListener("execute", function(e) {
               /** 
               if this button is pushed, will download File where the location 
= "File Manager/myfile.txt" in the server.

               *//
                    });
    
   
                 }
            }
        });    
    </script>


  </head>
</html>

How to make the downloading process?

And, anybody know how to upload file too? does it need qx.io.remote.Request too?

Thanks,

Jhonny





      
____________________________________________________________________________________
Looking for last minute shopping deals?  
Find them fast with Yahoo! Search.  
http://tools.search.yahoo.com/newsearch/category.php?category=shopping
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to