Hi, since some days I test and test this great framework and I think I understand nothing. I read dozends of sites (tutorials, docu pages, ect.), played with the plaxground and .....
only problems. I got with the "python installer" a Application.js (in source\class\qooximkerei) and a index.html (in source). Than I opened the Application.js and got this (here without the button example): qx.Class.define("qooximkerei.Application",{ extend: qx.application.Standalone, members: { main: function() { this.base(arguments); if (qx.core.Variant.isSet("qx.debug", "on")) { qx.log.appender.Native; qx.log.appender.Console; } // Our code will come here } } }); Than I switched to the playground and copied/pasted some code snippets. For example: var win = new qx.ui.window.Window("First Window"); win.setWidth(300); win.setHeight(200); win.setShowMinimize(false); this.getRoot().add(win, {left:20, top:20}); win.open(); After copied this code after my line //your code here I started my browser and afte a long time I got my first window. Wonderful, my first thought. After searching in the demobrowser I found for example this code (table demo). The jscode starts with: qx.Class.define("demobrowser.demo.table.Table",{ extend : demobrowser.demo.table.TableDemo, members : { getCaption : function() { return "Table"; }, .... Häääh.... hmmh . No problem my thoughts. The same procedure. Copy and paste after my code snippet (creating a window) and changing the names (demobrowser.demo to qooximkerei.Application). The same with the next demobrowser declaration in extend line and ready Nothing. Only errors. table not defined and others. Than I copied this table.Table class outside of my qx.Class.define("qooximkerei.Application",{ .... ... }); qx.Class.define("qooximkerei.Application.table.Table",{ extend : qooximkerei.Application.table.TableDemo, members : { getCaption : function() { return "Table"; }, .... Wrong, too. Is there anywhere an example that shows the correct work with this framework. In my example there are to different syntaxes. The first one (window creation) in the playground browser and the second one (table defination) with literal notation in the demobrowser. How can I create this table example in my environment? For example the table has to be inside the window. And so on and so on...... I think I'm a little bit despaired. Josef -- View this message in context: http://qooxdoo.678.n2.nabble.com/I-m-frustrated-tp5975196p5975196.html Sent from the qooxdoo mailing list archive at Nabble.com. ------------------------------------------------------------------------------ Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)! Finally, a world-class log management solution at an even better price-free! Download using promo code Free_Logger_4_Dev2Dev. Offer expires February 28th, so secure your free ArcSight Logger TODAY! http://p.sf.net/sfu/arcsight-sfd2d _______________________________________________ qooxdoo-devel mailing list qooxdoo-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel