Pirlo wrote: > Hi, I have to use qooxdoo in a project and I don´t know how to do it. I ´m > searching a tutorial o something similar. I know the web page o qooxdo but > there I don´t manage to do something different to example " Hello World" . > I need someone who can help me or maybe sending me an better examples than I > can find in the official web page of qxoodoo. > > Thanks >
Pirlo, it would be helpful to know what exactly you have tried and where exactly you are now struggling. From your post I gather that made your way through http://qooxdoo.org/documentation/0.7/hello_world_tutorial and have successfully built and run at least a source version of the skeleton ("Hello World") app in your browser. Is that right? If this is the case, the next step would be to locate the main source file for the app, source/class/custom/Application.js, on your file system. Open it in your preferred text editor and add features to the class. To see the effects of your changes, you simple reload the application index.html in your browser. You could for instance add another button. Locate the function assigned to the key 'main' in the class map and add lines like the following: var button2 = new qx.ui.form.Button("Another Button", "sample/test.png"); this.getRoot().add(button2, { left : 150, top : 150 }); That should give you the idea. Thomas ------------------------------------------------------------------------- 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
