Re: [qooxdoo-devel] How do I test a mixin with the test-runner?

2013-03-03 Thread Daniel Wagner
Define a class and include your mixin: qx.Class.define("Temp", { extend: qx.core.Object }); qx.Class.include(Temp, custom.MSomeMixin); Then test the mixin's methods on an instance of Temp. Regards, Daniel On 03/03/2013 05:10 PM, totty wrote: > How do I test a mixin with the test-runner? > >

Re: [qooxdoo-devel] Mustache vs hogan

2013-03-03 Thread Martin Wittemann
Hey, until now, we did not run into any performance issue using mustache. Do you have any problem with it? We do have good experiences with mustache and its a well known and easy way to upgrade. So as long as we don't have any issue, I would not see the need of a change here. Regards, Martin A

Re: [qooxdoo-devel] packages and parts, separate-loader, static class with defer method

2013-03-03 Thread non
Step further: Deactivating the "variants" optimization eliminates the problem. Maybe this helps.. -- View this message in context: http://qooxdoo.678.n2.nabble.com/packages-and-parts-separate-loader-static-class-with-defer-method-tp7582971p7582993.html Sent from the qooxdoo mailing list arch

Re: [qooxdoo-devel] packages and parts, separate-loader, static class with defer method

2013-03-03 Thread non
Hi, I added the explicit qx.data.SingleValueBinding requirement as suggested. Now source builds and runs without a problem, but build is still complaining: Uncaught TypeError: Cannot call method 'endsWith' of undefined my.app.27350a9128e7.js:2 Any ideas? It's also in that "defer" context. In the

Re: [qooxdoo-devel] Form with variable number of widgets and buttons

2013-03-03 Thread thron7
What with an even more compact solution: You could use a ComboBox, with an additional button. If you enter a new value into the ComboBox' text field, the button becomes [+], and on pressing this the value is added to the list. If you select a value from the list, or enter an existing value by h

Re: [qooxdoo-devel] Warning Unknown global symbol referenced

2013-03-03 Thread thron7
On 03/02/2013 09:31 AM, ?a(ng Khoa Tra^`n Quang wrote: Hi Qooxdoo team, I have just modified my qooxdoo project to following structure qipcore2 (root directory) qipc(directory): contained the common code which will be used by the others class in qip directory qip (directory): con

[qooxdoo-devel] How do I test a mixin with the test-runner?

2013-03-03 Thread totty
How do I test a mixin with the test-runner? -- View this message in context: http://qooxdoo.678.n2.nabble.com/How-do-I-test-a-mixin-with-the-test-runner-tp7582989.html Sent from the qooxdoo mailing list archive at Nabble.com.