Re: [qooxdoo-devel] Helping the generator to achieve better results

2010-04-28 Thread Christian Schuff
Hi thron, thanks a lot for clarifying. Just dome more comments / questions: thron7 schrieb: > On 04/27/2010 08:31 AM, Christian Schuff wrote: > >> Forgot to change the subject :/ Once again: >> >> Hi guys, >> >> I stumbled upon this really cool presentation: >> http://www.slideshare.net/nzakas

Re: [qooxdoo-devel] SelectBox set selection

2010-04-28 Thread ReHa
I found a workaround that works with an invisible helper field, which is triggered by the selectionBox and bound to the model: --- // selector - only for selection - no data binding var selector = new qx.ui.form.SelectBox(); var selData = [{label: "a", id: 1}, {label: "b", id: 2}, {label: "c", id

Re: [qooxdoo-devel] image combining (qooxdoo 1.1-pre)

2010-04-28 Thread thron7
I found it: The problem is in the way combined images are subjected to #asset hints. They have to be included :-\ . So, for the time being you have to #asset them, either by a wild card that includes them (e.g. #asset(infodesk/*)), or explicitly: #asset(infodesk/flag-combined.png) #asset(infodesk

Re: [qooxdoo-devel] qooxdoo 1.1 and 1.0.2 released

2010-04-28 Thread thron7
> I just tried to switch from 1.0.1 to 1.1 and got the following error > message Is it so that Python 2.4.3 (default in CentOS 5.4) is not enough > anymore? Exactly. Python 2.4 support in qooxdoo was officially dropped with version 1.0 [1], although there was no immediate incompatibility introduc

Re: [qooxdoo-devel] qooxdoo 1.1 and 1.0.2 released

2010-04-28 Thread Ilkka Oksanen
> > there is good news: as planned we just released both qooxdoo 1.1 and > qooxdoo 1.0.2. For all the details see the announcement at > http://news.qooxdoo.org/qooxdoo-1-1-and-1-0-2-released > and the links therein. > Excellent news! It's great to see that Qooxdoo is constantly developed further.

Re: [qooxdoo-devel] No way to load Qooxdoo on a page after DOM has been loaded on FF < 3.6

2010-04-28 Thread Jean-Noël Rivasseau
Can someone reply to this? On Thu, Apr 15, 2010 at 8:04 PM, Jean-Noël Rivasseau wrote: > Hi, > > I'd like to be able to load my Qx app after a main web page has been > loaded. I thought this would be simple, just add the loader script alter > instead of initially. Turns out it isnt; on FF 3.5 the

Re: [qooxdoo-devel] qooxdoo 1.1 and 1.0.2 released

2010-04-28 Thread Fritz Zaucker
Thanks for the details ... On Wed, 28 Apr 2010, thron7 wrote: > >> For SVN users: trunk is 1.1-continued and 1.0.2 is a branch? > > trunk is 1.1-continued (leading to 1.2), but there is now also a 1_1_x > branch (leading to 1.1.1); 1.0.2 is in the 1_0_x branch. > > t. > >

Re: [qooxdoo-devel] qooxdoo 1.1 and 1.0.2 released

2010-04-28 Thread thron7
> For SVN users: trunk is 1.1-continued and 1.0.2 is a branch? trunk is 1.1-continued (leading to 1.2), but there is now also a 1_1_x branch (leading to 1.1.1); 1.0.2 is in the 1_0_x branch. t. -- __

Re: [qooxdoo-devel] qooxdoo 1.1 and 1.0.2 released

2010-04-28 Thread Fritz Zaucker
Cool, congratulations and thanks for your efforts. For SVN users: trunk is 1.1-continued and 1.0.2 is a branch? Cheers, Fritz On Wed, 28 Apr 2010, Andreas Ecker wrote: > Hi everyone, > > there is good news: as planned we just released both qooxdoo 1.1 and > qooxdoo 1.0.2. For all the details se

Re: [qooxdoo-devel] SelectBox set selection

2010-04-28 Thread rsantiagopaz
ReHa (sorry my poor english), try something like this modification of your example: var form = new qx.ui.form.Form(); // Title: var title = new qx.ui.form.TextField(); form.add(title, "Title", null, "Title"); .. // Selection: var selectBox = new qx.ui.form.SelectBox(); form.add(selectBox,

[qooxdoo-devel] qooxdoo 1.1 and 1.0.2 released

2010-04-28 Thread Andreas Ecker
Hi everyone, there is good news: as planned we just released both qooxdoo 1.1 and qooxdoo 1.0.2. For all the details see the announcement at http://news.qooxdoo.org/qooxdoo-1-1-and-1-0-2-released and the links therein. Special thanks to the core team, and to the translators and all people involv

[qooxdoo-devel] Parametrizing config.json

2010-04-28 Thread flj
Hi. We have the following problem: the application we need to build needs to sit on several machines on which qooxdoo is placed in different places. Which means generate.py and config.json have to look different on each station. Therefore I wrote a file locals.json, which has only a "let" secti

Re: [qooxdoo-devel] SelectBox set selection

2010-04-28 Thread Eduardo Robles Elvira
On Wed, Apr 28, 2010 at 11:40 AM, MartinWittemann wrote: > > Hi, > > Well, you can not just take the single value binding code and give it to the > form controller. I didn't expect that to work. :) > > I added for the upcoming release a demo to show how form and list controller > can work together

Re: [qooxdoo-devel] SelectBox set selection

2010-04-28 Thread ReHa
Sorry, for asking again, but i hang for over half a day on this "simple" problem, without finding a solution. Here is my part of code. How can i solve the problem to have a selection-box, for which the corresponding-ids should be stored in database. I need a solution, which works bidrectional.

Re: [qooxdoo-devel] A proposed changed to the splitbutton widget

2010-04-28 Thread Alexander Steitz
Hi Stefan, On Wednesday April 28 2010 12:43:54 Stefan Andersson wrote: > Today the widget's button is linked to a Menu widget. Instead it should be > any widget returning a value to put in the textfield widget. For example > choosing a file in a structure or a file or directory from the file system

Re: [qooxdoo-devel] How can I turn off optimizations?

2010-04-28 Thread thron7
On 04/22/2010 10:36 AM, panyasan wrote: > > Hello, > > to take up an earlier thread: I am unsuccessful in trying to turn private > optimization off. Here's the section of my config.json > > "jobs" : > { > ... > > // build generation only > "source-build" : > { >

[qooxdoo-devel] A proposed changed to the splitbutton widget

2010-04-28 Thread Stefan Andersson
Today the widget's button is linked to a Menu widget. Instead it should be any widget returning a value to put in the textfield widget. For example choosing a file in a structure or a file or directory from the file system as well as a menu. How is it possible to increase the distance between

Re: [qooxdoo-devel] Closing [Bug 3450] before the final release

2010-04-28 Thread Petr Kobalíček
Okay ;) On Wed, Apr 28, 2010 at 7:57 AM, MartinWittemann wrote: > > Hi, > it may just take a couple minutes to code it but to test it right, check the > results and so on... it's really rare that fixing a bug only takes a couple > of minutes due to testing and checking that the quality of the fix

Re: [qooxdoo-devel] SelectBox set selection

2010-04-28 Thread MartinWittemann
Hi, Well, you can not just take the single value binding code and give it to the form controller. I didn't expect that to work. :) I added for the upcoming release a demo to show how form and list controller can work together. I changed it a bit to show how you can add your difference between n

Re: [qooxdoo-devel] SelectBox set selection

2010-04-28 Thread ReHa
Sorry for posting at the wrong place - and thanks for your example! Your example works, but i have to insert this small example into a complexer form-controller. I tried to adapt your example to my formController by adding: formController.addTarget(controller, "selection[0].id", "GlobalID", true

Re: [qooxdoo-devel] Qooxdoo 0.5.6 and qooxdoo 0.7.x not working with Firefox 3.6 ?

2010-04-28 Thread Christian Hagendorn
Hi John, Could you please share a snippet to reproduce this issue. The getBoundingClientRect() should handle this: "The amount of scrolling that has been done of the viewport area is taken into account when computing the bounding rectangle. This means that the |top| and |left| property change

Re: [qooxdoo-devel] SelectBox set selection

2010-04-28 Thread MartinWittemann
Hello ReHa, first of all, please do not reply to a existing question asking a new one. The threaded view will sort in your questions as an answer of the older. That way, your new question can easily get lost. Now to your question: The use case you need can not exactly work with qooxdoo. The mode

Re: [qooxdoo-devel] image combining (qooxdoo 1.1-pre)

2010-04-28 Thread Peter Schneider
> On 04/27/2010 05:51 PM, Peter Schneider wrote: >> Hi there, >> >> I'm currently trying to combine some images with the help of the generator >> using the documentation on [1] & [2]. >> The combining itself seems to work (the combined images and the "meta"-files >> get created), but the applicatio

Re: [qooxdoo-devel] Qooxdoo 0.5.6 and qooxdoo 0.7.x not working with Firefox 3.6 ?

2010-04-28 Thread John Kauffman
I ran into a small issue with the suggested fix. It looks like the API doesn't take into account the scroll offsets. Here's what we're using to fix the problem in 0.65. qx.html.Location.getPageAreaLeft = function(el) { return el.getBoundingClientRect().left + qx.html.Scroll.getLeftSum(el); }

Re: [qooxdoo-devel] SelectBox set selection

2010-04-28 Thread ReHa
Hello, i saw the example above with only the displayed values "a", "b", "c", ... But how to do this model and controller with id's and values, like id=1, value="a" id=2, value="b" ... In the select-box the values should be shown, in the model the id's should be used. Can anyone give an exampl