Re: [qooxdoo-devel] Possible bug in qx.ui.form.VirtualSelectBox's delegate's sorter

2013-02-27 Thread loremipsum
Yeah, that's what I thought, and Iv'e tried the lower case solution as well. But now I understand : it's a browser issue. If I try under Firefox, the lower case solution works perfectly fine. Under Chrome, your example doesn't work (thanks anyway for pointing out it's not an issue with the proper s

Re: [qooxdoo-devel] Strange behavior with qx.ui.form.SelectBox, is it a bug ?

2013-01-09 Thread LoremIpsum
bel, icon and model property, you have to call > the "bindDefaultProperty" method in the bindItem method. :) > > I hope that mad it a bit clearer, > Martin > > > > Am 20.12.2012 um 16:48 schrieb loremipsum : > >> Hi folks, >> >> I've fo

[qooxdoo-devel] Architecture for both desktop and mobile app

2012-12-18 Thread loremipsum
Hi folks, I want to develop a mobile version of my app, but I'd like to share some classes and resources between the two versions, and I have no clue about where to put classes, etc. My project structure is the following : - source - class - ex - controller

[qooxdoo-devel] What is a classical qooxdoo widget lifecycle implementation ?

2012-11-05 Thread loremipsum
Hi folks, *Context :* I just coded some new widget for my company app, and for the first time I used the _createChildControlImpl method to create UI children. But to create the children in the right order, I have a method, _create, that calls several times the getChildControl method. So I don't to

Re: [qooxdoo-devel] removeListener after addListenerOnce doesn't remove anything

2012-10-30 Thread loremipsum
Hi ! You're very welcome, that's the least I can do for using this excellent framework. The bug #6941 has been filed here : http://bugs.qooxdoo.org/show_bug.cgi?id=6941 -- View this message in context: http://qooxdoo.678.n2.nabble.com/removeLi

Re: [qooxdoo-devel] Qooxdoo and D3 Crossfilter

2012-09-11 Thread LoremIpsum
Hi, that should be as simple as creating a new contrib. I'm going to give it a look, this crossfilter library seems very interesting ! LoremIpsum On 09/11/2012 11:34 AM, 689137 wrote: > Hi, > > I am thinking of using the http://square.github.com/crossfilter/ > Crossfilter co

Re: [qooxdoo-devel] CaptionBar and ScrollButton disappear with Aristo in Firefox15

2012-09-02 Thread loremipsum
Hi folks, I've tried with the trunk version of Qooxdoo, it seems to work properly with Aristo theme and Firefox 15. Both the caption bar and the scroll bars appear and behave as expected. So this is a pretty good news ! Do you know when the 2.1 will be released ? Extra question for the gurus : wh

Re: [qooxdoo-devel] Generator error

2012-08-31 Thread LoremIpsum
Yup, or ./generate.py dist-clean will do the trick, too. Lorem On 08/31/2012 09:37 AM, John Spackman wrote: > I've had a similar error that I think was fixed by deleting the generator > cache and rebuilding (to find the cache dir, run "generate.py info") > > John > > On 30/08/2012 19:30, "Benjam

Re: [qooxdoo-devel] CaptionBar and ScrollButton disappear with Aristo in Firefox15

2012-08-30 Thread loremipsum
wrote: > Hey, > this might be a problem with the changed borderImage syntax of > firefox. Which qooxdoo version do you use? > Regards, > Martin > > Am 30.08.2012 um 14:21 schrieb loremipsum <[hidden email] > >: > > > Hi folks, > > > > I've

[qooxdoo-devel] CaptionBar and ScrollButton disappear with Aristo in Firefox15

2012-08-30 Thread loremipsum
Hi folks, I've been using Qooxdoo with the Aristo theme for months now, and with the latest *Firefox* release (*15*), the two following problems occur : - the *caption bar* (i.e. the place where the title of a Window is displayed) is *invisible*/transparent, though the title itself is visible, - t

Re: [qooxdoo-devel] Simulate a resize in unit tests

2012-08-24 Thread LoremIpsum
zeChange(widget, 125, 458); var that = this; this.wait(5000, function() { that.assertTrue(spy.calledOnce); }); } On 08/24/2012 04:02 PM, Alexander Steitz wrote: > Can you post a small sample of your unit test? > > Regards, >Alex > > -----Original Me

Re: [qooxdoo-devel] Simulate a resize in unit tests

2012-08-24 Thread loremipsum
Thanks for your answer, no I didn't know about the flush() thing, but I tried and i still doesn't work... -- View this message in context: http://qooxdoo.678.n2.nabble.com/Simulate-a-resize-in-unit-tests-tp7581093p7581095.html Sent from the qooxdoo mailing list archive at Nabble.com. ---

[qooxdoo-devel] Simulate a resize in unit tests

2012-08-24 Thread loremipsum
Hi folks, I'm currently working on *unit tests*, and I want to ensure that some parameters are invalidated when resizing an instance (the tested instance). Basically, in this instance, I compute some values based upon the instance's bounds, and whenever they change, these values must be recompute

[qooxdoo-devel] Optimize options causes app to silently fail at startup

2012-05-31 Thread loremipsum
Hi folks, first of all thanks for you help and for the amazing framework Qooxdoo is. I've tried to optimize the code generated by the build job, and if I put something different than an empty array in the optimize options of my config.json file (within the job override or within the let section),

Re: [qooxdoo-devel] How to create my own model? I cannot find:

2012-03-09 Thread loremipsum
I've thought a bit about what you ask, and it appears you have two possibilities with your javascript array of dynamic objects : a) you want a model, no matter how they're converted. You just want to display your objects in a list, for instance. b) you want a model, but you don't want generic obje

Re: [qooxdoo-devel] How to create my own model? I cannot find:

2012-03-09 Thread loremipsum
Yep ! Give to your marshaler a delegate that implement a getModelClass method, in which you'll be able to instanciate whatever class you want, using the method's arguments given by the marshaler. -- View this message in context: http://qooxdoo.678.n2.nabble.com/How-to-create-my-own-model-I-cannot

Re: [qooxdoo-devel] How to create my own model? I cannot find:

2012-03-09 Thread loremipsum
Hi, I suggest you to use a JSON Marshaler to achieve what you want to do. See this example : http://demo.qooxdoo.org/current/demobrowser/#virtual~List.html The thing is to give to qx.data.marshal.Json.createModel() method a javascript array, and it will convert it to a qooxdoo array with qooxdoo o

Re: [qooxdoo-devel] Getting mouse coordinates within a widget

2012-03-08 Thread loremipsum
You are a lifesaver, buddy ! Thank you very much ! Here's what I'll use : getMouseCoordinates: function(event) { var box = event.getTarget().getContainerLocation("box"); return {x: event.getDocumentLeft() - box.left, y: event.getDocumentTop() - box.top}; } -- View this message in context:

Re: [qooxdoo-devel] Error in dynamic Table ResizeBehavior

2012-02-02 Thread loremipsum
The example you gave works perfectly. Thank you very much, you rock ! -- View this message in context: http://qooxdoo.678.n2.nabble.com/Error-in-dynamic-Table-ResizeBehavior-tp7246972p7250033.html Sent from the qooxdoo mailing list archive at Nabble.com.