Hi Jhonny, to create an own application you could use a skeleton as a template for your own application. See the documentation http://qooxdoo.org/documentation/0.7/skeleton for further details. This is also a good start point for gaining knowledge about developing applications with qooxdoo.
By using the skeleton structure you can use the powerful tool chain of qooxdoo. The build process generates a javascript file with every class your application needs. You do not have to worry about any missing classes. It's all done for you automagically ;) cheers, Alex jhonny thio wrote: > Hi... > For using qooxdoo, I usually use the qx.js from the qooxdoo sdk\Quickstart. > > Example : > I have folder = D:\Qooxdoo > Then I put the qx.js in folder D:\Qooxdoo\Script > Then I make index.html in folder D:\Qooxdoo. > The content of index.html : > > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" > "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> > <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> > <head> > <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> > <title>Quickstart</title> > > <!-- Use settings to configure application --> > <script type="text/javascript"> > qxsettings = { "qx.application" : "Application" }; > </script> > > <!-- Include compiled qooxdoo --> > <script type="text/javascript" src="script/qx.js"></script> > > <!-- Add your own classes here --> > <script type="text/javascript"> > > qx.Class.define("Application", > { > extend : qx.application.Standalone, > > members : > { > main : function() > { > // Call super class > this.base(arguments); > > // Create button > var button1 = new qx.ui.form.Button("First Button", > "./button.png"); > > // Add button to document with coordinates > this.getRoot().add(button1, { > left : 50, > top : 50 > }); > > // Add an event listener > button1.addListener("execute", function(e) { > alert("Hello World!"); > }); > } > } > }); > > </script> > </head> > </html> > > > The problem is the qx.js from quickstart is not complete, there are some > class that not in there.. > >>From where I can get the *.js that contains all class in qooxdoo (The >>complete version)? > And please tell me the right step for start using qooxdoo. > > Thank you very much > > > > > > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > Check out the new SourceForge.net Marketplace. > It's the best place to buy or sell services for > just about anything Open Source. > http://sourceforge.net/services/buy/index.php > > > ------------------------------------------------------------------------ > > _______________________________________________ > qooxdoo-devel mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel ------------------------------------------------------------------------- Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services for just about anything Open Source. http://sourceforge.net/services/buy/index.php _______________________________________________ qooxdoo-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
