Re: [qooxdoo-devel] blocked DateField still shows the calendar dropdown

2011-09-12 Thread Martin Wittemann
Hey, I used the Mixin Mblocked to block the combo (combo.block() ). This is because I don’t want to disable the controls since the disabled look is not very well readable (e.g. on beamers with demo’s). But somehow I think thats a wrong approach. If the disabled widgets don't look the way you lik

Re: [qooxdoo-devel] Number formatting and separators

2011-09-12 Thread Martin Wittemann
Hey, I'm sorry but that way too much code to read through for me. So I can only give you some general advices. > But I've found two problem i guess. It seems that the regexp expression is > checked only on the input and not on the content in the TextField. I don't > know if it is suppose to be li

Re: [qooxdoo-devel] Adding "modelPath" property to qx.data.controller.List

2011-09-12 Thread Martin Wittemann
Hey, > OK, I would like to see anyone else backing up you in that decision, because > until now its been many in favor of modelPath and just you in favor of > keeping that out. Well, I know it sounds hard but in the end, I am responsible for the framework so my decision should be enough. I don't

Re: [qooxdoo-devel] adding a dynamic component to a static website

2011-09-12 Thread Marc Puts
Hi Terrence, With qooxdoo you can create a few kinds of applications. [1] With qooxdoo you can create an "inline" application [2] (see bottom of page) that you can embed anywhere in your web page. See [3] for some more info. With this you can add some qooxdoo widgets to your otherwise static web

[qooxdoo-devel] adding a dynamic component to a static website

2011-09-12 Thread Terrence Brannon
Hello, I have a requirement to add a web store to a static website. The entire site is static at the moment and I would like for a menu item linking to a webstore to maintain the look and feel of the original site (and keep the navigation, css, etc) yet provide a dynamic webstore. Is it possible

Re: [qooxdoo-devel] Adding "modelPath" property to qx.data.controller.List

2011-09-12 Thread Marc Puts
Hi, I don't think that a modelPath property is a good idea, because IMO it solves the wrong issue. The need for a modelPath comes from another problem: the plain data in gimmi's code is hard to apply to data binding. This is because of the need for "same" model objects to be equal by identity, so

Re: [qooxdoo-devel] When to use Stores and when to use list or table?

2011-09-12 Thread Simon White
Hi I have a store created and it loads the JSON Data which is in the form show below. Now I am trying to get the list Controller to use the store and display the ACCTNO+" "+ID1 for example "0001 Transfreight" in the list. I obviously need to bind the store to the controller but I am not sure

[qooxdoo-devel] Popup Menu items

2011-09-12 Thread Jim Hunter
I am using a qx.ui.menu.Menu with standard qx.ui.menu.Button items in it to produce a popup menu. In all browsers, except IE, it looks great. Here is what it looks like in IE9 in compatability mode (NOTE: The last menu item is disabled. It should not have the pipe symbol as the first character and

Re: [qooxdoo-devel] Adding "modelPath" property to qx.data.controller.List

2011-09-12 Thread Guilherme Aiolfi
OK, I would like to see anyone else backing up you in that decision, because until now its been many in favor of modelPath and just you in favor of keeping that out. I've developed apps in html(plain), extjs, qooxdoo, apf, sproutcore. And qooxdoo is the only one that doesn't support what I'm askin

Re: [qooxdoo-devel] placement mode and comboboxes with many items

2011-09-12 Thread Jeroen Smit
Hi, See http://bugzilla.qooxdoo.org/show_bug.cgi?id=5604 Best regards, Jeroen -Original Message- From: Tristan Koch [mailto:tristan.k...@1und1.de] Sent: maandag 12 september 2011 3:59 PM To: qooxdoo Development Subject: Re: [qooxdoo-devel] placement mode and comboboxes with many items

Re: [qooxdoo-devel] Number formatting and separators

2011-09-12 Thread Marco Pompili
Hi Martin, I've solved the problem with the NumberFormat class. I was making and error. So I've implemented a little TextField widget. But I've found two problem i guess. It seems that the regexp expression is checked only on the input and not on the content in the TextField. I don't know if it i

Re: [qooxdoo-devel] Varying row height of a progressive table

2011-09-12 Thread Derrell Lipman
On Mon, Sep 12, 2011 at 10:34, furiouseskimo wrote: > Hi Derrell > > I've been digging into this some more today. I'm pretty new to web > development, so it's still giving me trouble but I think that I've found a > bug. > > I tried the demo below in Firefox & Chrome and it doesn't change the row

Re: [qooxdoo-devel] Varying row height of a progressive table

2011-09-12 Thread furiouseskimo
Hi Derrell I've been digging into this some more today. I'm pretty new to web development, so it's still giving me trouble but I think that I've found a bug. I tried the demo below in Firefox & Chrome and it doesn't change the row height when the mouse over event is fired. It is fired because the

Re: [qooxdoo-devel] Rounded "corners" on windows icw statusbar (version 1.4.1)

2011-09-12 Thread Jeroen Smit
For the modern looks it's waiting for an ie9countdown, so that may take a while ;-) -Original Message- From: Tristan Koch [mailto:tristan.k...@1und1.de] Sent: maandag 12 september 2011 4:00 PM To: qooxdoo Development Subject: Re: [qooxdoo-devel] Rounded "corners" on windows icw statusbar

Re: [qooxdoo-devel] Rounded "corners" on windows icw statusbar (version 1.4.1)

2011-09-12 Thread Tristan Koch
http://www.ie6countdown.com ;) Am 09.09.2011 um 16:29 schrieb Jeroen Smit: > Hi, > > I don't see the need for a bug, but I was just wondering. > In the more advanced browsers (i.e. Chrome, Opera etcetera) I think the > windows look great. > I'll just wait till IE gets a bit more advanced ;-) >

Re: [qooxdoo-devel] placement mode and comboboxes with many items

2011-09-12 Thread Tristan Koch
Thanks for taking a closer look! I guess the popup is moved to x = 0, y = 0 initially and while the combobox is processed, the layout queue is dirty, the new position does not get applied and in effect, the popup stays there for a fraction of a second. The patch you provided seems like a sensib

Re: [qooxdoo-devel] blocked DateField still shows the calendar dropdown

2011-09-12 Thread Jeroen Smit
Hi, I used the Mixin Mblocked to block the combo (combo.block() ). This is because I don't want to disable the controls since the disabled look is not very well readable (e.g. on beamers with demo's). In the documentation of the blocker I read that all events are blocked, but the keyboard events

Re: [qooxdoo-devel] blocked DateField still shows the calendar dropdown

2011-09-12 Thread Martin Wittemann
Hey, what exactly do you mean with "blocked". You can just turn the widget disabled and everything should work fine. Could you maybe describe what you are dinging and what you want to get? Regards, Martin Am 12.09.2011 um 12:29 schrieb Jeroen Smit: Hi, I blocked a qx.ui.form.DateField on a cer

Re: [qooxdoo-devel] load code?

2011-09-12 Thread Tino Butz
Hi, In addition to linucos comment: You can organize your code with parts. Have a look on the following manual page: http://manual.qooxdoo.org/1.5.x/pages/development/parts_using.html Tino Am 12.09.2011 um 07:28 schrieb linucos: Hi, Use: (new qx.io.ScriptLoader()).load("your script code

[qooxdoo-devel] blocked DateField still shows the calendar dropdown

2011-09-12 Thread Jeroen Smit
Hi, I blocked a qx.ui.form.DateField on a certain form because I do not want the user to change anything. The button is deactived which I expected. However, when I click the control and press ALT + DOWN the list date chooser is still shown. The same goes for any combobox control by the way. Is

Re: [qooxdoo-devel] Number formatting and separators

2011-09-12 Thread Martin Wittemann
Hello, I would like to create a textfield that can receive in input only numbers and a comma. The dots should be added automatically like this: 123456 = 123.456. But if i use a comma the result shoud be this one: 123456,789123 = 123.456,789123 (no dots after the comma) I'm extending the textfiel

Re: [qooxdoo-devel] Popup content menu disappears immediately after it appears

2011-09-12 Thread Martin Wittemann
Hello John, I've recently switched an app from the Simple theme to Aristo and discovered that right-click content menus always disappear as soon as they appear. This is because in the Aristo theme, the menu appears directly underneath the mouse and this triggers qx.ui.menu.Button._onMouseUp() w

Re: [qooxdoo-devel] Questions about Qooxdoo tables

2011-09-12 Thread Martin Wittemann
Hi, 1) First I filed bug http://bugzilla.qooxdoo.org/show_bug.cgi?id=5600 about cell paddings. Don't get the question here. ;) But I have already read the bug and added a comment. 2) I have a table where I would like one of the columns to not have the focus indicator. I can turn off the focus ind

Re: [qooxdoo-devel] how setData works

2011-09-12 Thread Martin Wittemann
Hello John, > I have a table on a gui that has been clicked to sort one of the columns. > When I call setData (I passed clearSorting as false) on a table model, > the data on the gui widget isn't sorted anymore. > > Do I need to manually call a sort or something? Well, if the data changed, I woul

Re: [qooxdoo-devel] Grid layout: CellWidget exclusion and spacingY problem

2011-09-12 Thread Martin Wittemann
Hi, > I'm working on a big form (this form use the Single renderer) and I'm facing > an annoying problem when hiding rows: the vertical spacing is still visible > because the rows are positioned in absolute mode. I would guess that this is more a grid layout issue than a form issue. > A solution

Re: [qooxdoo-devel] load code?

2011-09-12 Thread Martin Wittemann
Hi, try to read the "parts" section in the manual [1]. You can find all you need in there. Best, Martin [1] http://manual.qooxdoo.org/1.5/pages/development.html#parts Am 09.09.2011 um 23:09 schrieb dragon2k...@gmx.de: Hello, i want to load some code after the main

Re: [qooxdoo-devel] mixin methods cannot override object methods and use base methods

2011-09-12 Thread Gabriel Munteanu
No, You should not override setValue, just call mSetValue(value) when you use an instance of that class. say, you have your class: mytextfield = class({ extend textfield, include mixin1 }); and going to the place where you use it, you would do something like this: var mtf = new mytextfi