Re: [qooxdoo-devel] Image resizing - solved

2016-04-22 Thread Werner Thie
On 4/22/16 7:33 AM, Werner Thie wrote: > Thank you so much, but the idea is to have the SVG maxing the drawing > area like other elements do without resorting to listeners. > > What irks me is the problem, that an image in a container imposes on its > parent, which is contrary

Re: [qooxdoo-devel] Image resizing

2016-04-22 Thread Werner Thie
Thank you so much, but the idea is to have the SVG maxing the drawing area like other elements do without resorting to listeners. What irks me is the problem, that an image in a container imposes on its parent, which is contrary to the behavior of other elements, as it can be easily seen by

Re: [qooxdoo-devel] Scrollbars not showing in Chrome Version 49.0.2623.112 m

2016-04-15 Thread Werner Thie
ey do not appear. > This works as expected on Firefox and IE11. > > Please can you create an issue on github so that we can track it? > > Regards > John > > > > > On 13/04/2016, 18:15, "qooxdoo Development > <qooxdoo-devel@lists.sourceforge.net> on

[qooxdoo-devel] Scrollbars not showing in Chrome Version 49.0.2623.112 m

2016-04-13 Thread Werner Thie
Hi all most obvious in Playground, no scrollbars visible at all, minimal demo code // create scroll container var scroller = new qx.ui.container.Scroll().set({ width: 300, height: 200, backgroundColor: 'yellow' }); // add a widget which is larger than the container

[qooxdoo-devel] State of the affairs concerning Edge (MSW10)

2015-08-17 Thread Werner Thie
Aloha all What's the word about the qooxdoo Edge relation? I see syntax errors in my application for instance when creating qx.ui.form.TextField() Wanting to have a look with Edge at the playground left me in the debugger with several Syntax Errors too. Googling reveals almost nothing,

Re: [qooxdoo-devel] Canonical usage pattern for event listeners

2015-07-23 Thread Werner Thie
to addListener (ie the name, the callback, and the context), or (b) pass the opaque ID to removeListenerById. John On 22/07/2015 18:08, Werner Thie wer...@thieprojects.ch wrote: Aloha what is the common usage pattern with event listeners attached to elements? Googling reveals examples with popup

[qooxdoo-devel] Does qooxdoo have a GUI builder tool?

2015-07-23 Thread Werner Thie
Hi all digging around the net revealed some code related to qooxdoo GUI building, but either the code is old or not maintained. I managed to resurrect qxGUIBuilder such, that it's coming up, but the project itself is incomplete. Another one is QxTransformer, which also seems a promising

[qooxdoo-devel] Canonical usage pattern for event listeners

2015-07-22 Thread Werner Thie
Aloha what is the common usage pattern with event listeners attached to elements? Googling reveals examples with popup menues using addListenerOnce() vs others using addListener(), the addListenerOnce case seemingly trying to avoid the problem of handling the listener removal automatically,

[qooxdoo-devel] Right mouse clicks selects tree item and shows context popup

2015-07-08 Thread Werner Thie
Aloha all just had a hair pulling and head scratching session lasting two hours, lots of googling, lots of stuff not working out, here's the solution, which seems to do the trick on qx-5.0: var tree = new qx.ui.tree.VirtualTree(null, name, children).set({ width : 250, padding: 0,

Re: [qooxdoo-devel] geolocation maps in qooxdoo

2013-04-23 Thread Werner Thie
Hi, just finished some stuff with Raphael in qooxdoo, a world map example is included on raphaeljs.com Werner On 4/23/13 10:58 AM, Ana Rita Sousa wrote: Hi, I have integrated OpenLayers with Qooxdoo and it rocks! The OpenLayers is a powerful javascript mapping library, but there are

Re: [qooxdoo-devel] geolocation maps in qooxdoo

2013-04-23 Thread Werner Thie
On 4/23/13 11:44 AM, Fritz Zaucker wrote: Raphael had serious memory leaks in the past. Quite possible that this is fixed now. None observed so far, Fritz! Werner -- Try New Relic Now We'll Send You this Cool Shirt

Re: [qooxdoo-devel] Răspuns: Question

2013-04-18 Thread Werner Thie
Hi so, only what the masses use (and understand) is good? That's why PHP (Pretty Home Page, tsk) has such a following, being what BASIC was in the seventies of the previous millenium? With your gauges adjusted like that, you have to seek elsewhere, but looking at it from an efficiency

Re: [qooxdoo-devel] Managing subscriptions to q.e.message.Bus

2013-04-02 Thread Werner Thie
On 4/2/13 9:44 AM, Romeo Kenfack Tsakem wrote: Hi Werner, you are right, passing back a unique key when subscribing could be an enhancement. Please open a bug and we will have a look into it. Regards, Romeo -Ursprüngliche Nachricht- Von: Werner Thie [mailto:wer...@thieprojects.ch

[qooxdoo-devel] Managing subscriptions to q.e.message.Bus

2013-03-31 Thread Werner Thie
Hi all what's the envisioned pattern for managing subscriptions, where a lot of participating objects distributed among a hierarchy do subscribe/unsubscribe a lot to the bus (say for a simple status change) var bus = qx.event.message.Bus.getInstance(); bus.subscribe(statuschange, function(e) {

Re: [qooxdoo-devel] qx.io.ImageLoader not working on mobile Safari

2013-02-07 Thread Werner Thie
On 2/7/13 4:34 PM, Daniel Wagner wrote: we're not aware of any problems. Can you give us some more information on what you're doing and what's going wrong? Basically creating a Image midflight programmatically var img = qx.io.ImageLoader.load(uri); //only a tiny one, like 32x32px :

[qooxdoo-devel] qx.io.ImageLoader not working on mobile Safari

2013-02-06 Thread Werner Thie
Hi all just had a few drab moments realizing that the qx.io.ImageLoader.load() code cannot predictably load images in mobile Safari. Is this confirmed behavior and how to circumvent that problem? TIA Werner -- Free

[qooxdoo-devel] qx.bom.element.Animation.animate() listener for animation end

2012-10-16 Thread Werner Thie
Hi all after digging in the source, I have my animation completion funcs working again, by listening for 'end' like var animation = { duration: 1000, keyFrames : { 0 : {translate: 100px} }}; var completionfunc = function() { debugger; }; var elm =

Re: [qooxdoo-devel] Why does IE9 not display application correctly?

2012-01-25 Thread Werner Thie
Hi Simon We see certain problems in IE9, if running in downgraded compatibility mode (advertises itself as IE7), like images not being shown or scrollbars being displayed in odd places. The downgrade (compatibility icon) vanishes by setting meta http-equiv=X-UA-Compatible content=IE=edge /

Re: [qooxdoo-devel] CKEditor / qooxdoo integration

2012-01-17 Thread Werner Thie
Hi Derell just had a go at your project, builds with no hickups, looks cool! When you say sponsored, may I ask how 'big' the effort was in bringing CKEditor up to this stage. Was it just a matter of configuration or modifying the innards, or.. Thxs, Werner On 18.01.2012 03:01, Derrell

Re: [qooxdoo-devel] Handling of modal and alwaysOnTop properties

2011-12-23 Thread Werner Thie
alwaysOnTop is 'Always On Top', has nothing to do with modal and must be used with utmost care mostly in situations where some information MUST always be present, like for instance the position of the moderator rods in the core of an atomic reactor... My 2cts, Werner On 23.12.2011 09:52,

[qooxdoo-devel] IE snag with selection background in qx.ui.tree Elements

2011-11-15 Thread Werner Thie
Hi all Wishing to change the selection of my tree items I added a selected section to my project local file 'Decoration.js', which now looks like: decorations : { selected : { decorator : qx.ui.decoration.Background, style : { // original backgroundImage :

Re: [qooxdoo-devel] IE snag with selection background in qx.ui.tree Elements

2011-11-15 Thread Werner Thie
. This may be related to the alpha fixes, currently applied to all versions of IE. Am 15.11.2011 um 13:53 schrieb Werner Thie: Hi all Wishing to change the selection of my tree items I added a selected section to my project local file 'Decoration.js', which now looks like: decorations

Re: [qooxdoo-devel] IE snag with selection background in qx.ui.tree Elements

2011-11-15 Thread Werner Thie
... - distcleaned project of course - if I sneak in another selection.png into the build with the desired color, everything shows just fine Thxs, Werner On 15.11.2011 14:26, Tristan Koch wrote: This may be related to the alpha fixes, currently applied to all versions of IE. Except IEs= 9.

[qooxdoo-devel] Best practice for storing app state information during runtime

2011-10-28 Thread Werner Thie
Hi all don't know if this is a concern for all but consider a very simple hypothetical qooxdoo app serving users with different roles, namely 'user' and 'admin'. The app is storing the users state locally, thus opening this information to tampering with tools like Firebug and the likes such,

[qooxdoo-devel] Best practice for generating bigger formatted junks of HTML

2011-10-14 Thread Werner Thie
Hi Is there anybody having advice on how to best generate larger chunks of HTML being used as content in either qx.ui.embed.Html or qx.ui.basic.Label {rich: true}. Is there a preferred template engine used to solve this problem of having mixed content websites? I'm specially interested on

Re: [qooxdoo-devel] How to set base resource uri at runtime?

2011-07-09 Thread Werner Thie
Phil you mean, like getting all the imagery from some other place like //quite a hefty incision into qooxdoo basics; see the relevant code in //qx/util/ResourceManager.js which provides a single path situation for //finding resources like images on other servers, thus relieving our //humble

Re: [qooxdoo-devel] IE 8 problems with qooxdoo 1.3 and 1.4

2011-05-13 Thread Werner Thie
Hi would it be possible for you to put up a minimal sample which fails on some publicly available server. If the problem is reproducible then we know for sure that this must be solved. I fight with IE a lot and I always wonder what is coming next in terms of cutting corners with the MS guys,

Re: [qooxdoo-devel] QOOXDO FF4

2011-03-25 Thread Werner Thie
In all my tests with qooxdoo 1.2/13 releases all FF4 betas performed ok, even WebGL worked and I found no glitches so far (ok Firebug was not working properly, but seems now with V1.7 released up to the task again :-) Werner On 25.03.2011 07:50, Jim Hunter wrote: In my preliminary testing my

[qooxdoo-devel] Thank you qooxdoo team!

2011-03-25 Thread Werner Thie
Hi all just wanted to say thank you for the most perfect JScript framework making the process of writing great webapps a breeze! Another fine qooxdoo app just went productive under http://www2.jass.sf.tv/?uid=gast Thxs, Werner Load/deployment background (for those interested) Current load is

Re: [qooxdoo-devel] Thank you qooxdoo team!

2011-03-25 Thread Werner Thie
I see the problem but sf.tv (the operator of this site) is bound to strictly operate in the Swiss German part and is not allowed to graze across the fence in the Swiss French part. Politics aside, believe me, everything IS translated, there is a mechanism (though hidden) which allows

Re: [qooxdoo-devel] At last...!

2011-03-03 Thread Werner Thie
On 3/3/11 10:16 AM, nrg-b wrote: Hmmm. Only works with Firefox as long as Firebug is running otherwise you'll get a blank screen. Likewise, it won't work if firebug is not installed. Getting a console error on IE. However, seems to be ok on Chrome. IE is extremely picky concerning the

Re: [qooxdoo-devel] qooxdoo.org Move

2011-02-22 Thread Werner Thie
Same from me http://www.qooxdoo.org Forbidden - You don't have perms to access / htttp://qooxdoo.org seems ok Werner On 2/22/11 5:00 PM, Jean-Baptiste BRIAUD -- Novlog wrote: In fact, qooxdoo.org go to the classical page while www.qooxdoo.org go to a 403. On 22 févr. 2011, at

Re: [qooxdoo-devel] Canvas element does not seem to support setCursor

2011-01-11 Thread Werner Thie
Hi all I'm on qooxdoo 1.2.2 and just spruced up my WebGL demo with a cursor cycle button. setCursor() works as advertised on canvas, please see attached screenshot If you want to see the demo live hit http://www.thieprojects.ch/ and use the dropdown in the upper left corner to open the

Re: [qooxdoo-devel] qooxdoo and WebGL

2011-01-10 Thread Werner Thie
On 1/10/11 4:58 PM, Daniel Wagner wrote: Hi Werner, sounds cool and I'd love to check it out but unfortunately it doesn't work on any browser/OS combo I've tried (FF 4b8/Win 7, Chromium dev/Linux, WebKit nightly/OS X) :( up to where does it run? Does the site show the 'Desktop'? Just

[qooxdoo-devel] best way to keep qx.ui.embed.Html scrolled to bottom (logstyle)

2010-12-09 Thread Werner Thie
Hi all I'm sure missing out on a very simple and obvious feature: Appending to a qx.ui.embed.Html element like var prev = elem.getHtml(); orev += 'br/another line'; elem.setHtml(prev); elem.keepScrolledToTheVeryBottom(); // I tried scrolling events, sending events and didn't make

Re: [qooxdoo-devel] generate build/source speed

2010-08-23 Thread Werner Thie
Hi Just plug the following two lines somewhere at the top of generate.py and watch what happens after having psyco installed: import psyco psyco.full() I use psyco whenever running my webservers (twisted/nevow) on 32bit production websites. Speedup is about the same what can be observed

Re: [qooxdoo-devel] trunk#23028 and SDK-1.2 exception: Scanner' object has no attribute 'inData'

2010-08-13 Thread Werner Thie
Hello Thomas No need to send projects around, it happens with a spanking clean new project and it is reliably occurring. Just to sum it up: - Platform dependent reproducible bug occurs on MSW - Confirmed to happen with Python 2.5x and Python 2.6x family - Seems not to influence generated

[qooxdoo-devel] trunk#23028 and SDK-1.2 exception: Scanner' object has no attribute 'inData'

2010-08-12 Thread Werner Thie
Hi all generating a completely new project with python c:\qooxdoo-1.2-sdk\tool\bin\create-application.py -n kuckstdu -t inline cd kuckstdu python generate.py source-all manages to munch through the source-all job till done but leaves me with Exception exceptions.AttributeError: 'Scanner'

Re: [qooxdoo-devel] trunk#23028 and SDK-1.2 exception: Scanner' object has no attribute 'inData'

2010-08-12 Thread Werner Thie
earlier but I'm keeping the qooxdoo part of my work stable and do not use the build system at all. This problem started to irritate me when trying to migrate to 1.2. Thxs, Werner On 12.08.2010 14:22, thron7 wrote: On 08/12/2010 10:54 AM, Werner Thie wrote: Hi all generating a completely

Re: [qooxdoo-devel] trunk#23028 and SDK-1.2 exception: Scanner' object has no attribute 'inData'

2010-08-12 Thread Werner Thie
Hi .. a completely NEW project .. distclean is of absolutely no help, the buildup is elsewhere Thxs, Werner On 12.08.2010 16:15, David Charbonnier wrote: Reproducible up to the point where I rebooted the machine due to some upgrading by MS. Maybe try to run a distclean and see if the

Re: [qooxdoo-devel] trunk#23028 and SDK-1.2 exception: Scanner' object has no attribute 'inData'

2010-08-12 Thread Werner Thie
Hi Thron7 you didn't answer my most important question: Does it affect the resulting script(s) in any way? - My experience so far was that it doesn't, and you can safely ignore this message. Can't see a problem, scripts look fine ...snip... The sequence python generate.py distclean python

Re: [qooxdoo-devel] How to exclude ALL icons and classic theme in build

2010-08-06 Thread Werner Thie
that actually *use* them. so getting rid of them will only make those widgets break. t. On 08/06/2010 10:55 AM, Werner Thie wrote: Hi all it's such a silly question but I didn't find an answer so far Thxs, Werner -- This SF.net

Re: [qooxdoo-devel] node.js and qooxdoo

2010-08-03 Thread Werner Thie
Ok, we're now marching straight into a religious war about languages - if I would be heeding what my grandmother used to say - never ever discuss sex, religion and programming languages - I would remain silent. But tongue in cheek away, let's expand a little bit on a specific part of that

Re: [qooxdoo-devel] node.js and qooxdoo

2010-08-02 Thread Werner Thie
Can't resist to point out that what you're aiming at exists with twisted/nevow on the server side in python and athena/qooxdoo on the client side. - proven standalone webserver, http/https - probably the oldest and widest protocol support for TCP/IP in Python - completely asynchronous framework

Re: [qooxdoo-devel] Deprecations removed

2010-07-30 Thread Werner Thie
Coast is clear with trunk on my side, thanks for the effort! Werner On 27.07.2010 17:29, MartinWittemann wrote: Hello list, This is just a warning for all using trunk. I just removed all old and deprecated code. Here are some details about the removal:

[qooxdoo-devel] Invalid include block

2010-07-23 Thread Werner Thie
Hi all just wanted to do a generate.py source all on the Dialog contrib after adapting ../../qooxdoo/0.9-pre to several other SDK's in config.json. Although the error code is varying it's usually giving me a !!! Invalid include block: [u'dialog.*', u'qx.*', u'dialog.demo.Demo',

Re: [qooxdoo-devel] Cannot get the Dialog contrib (or any libraries) to load.

2010-07-09 Thread Werner Thie
On 09.07.2010 15:43, thron7 wrote: On 07/09/2010 03:11 PM, panyasan wrote: #use(dialog.*) to pull in all the classes, but this didn't work to activate the triggering of the defer function. I had to separately specify all the classes that were used: #use(dialog.Alert) #use(dialog.Prompt)

[qooxdoo-devel] qx.ui.decoration.Background.setBackgroundPositionX(10) - proper use of

2010-07-02 Thread Werner Thie
Hi all Is it correct that the following code DOES NOT provide the wished for grafical effect of shifting the background image: var element = new qx.ui.container.Composite(new qx.ui.layout.Basic()); var decorator= new qx.ui.decoration.Background().set({ backgroundImage : '00.png',

[qooxdoo-devel] Doku typo in qx/ui/decoration/MBackgroundImage,js

2010-06-29 Thread Werner Thie
Hi all - Comments for backgroundPositionX and backgroundPositionY seem to be interchanged, the comments mention 'vertical' for backgroundPositionX and 'horizontal' for backgroundPositionY. - Stumbled over this while analyzing a problem with IE and decorators with backgroundImage in an

[qooxdoo-devel] Best practice for hidden element creation

2010-06-29 Thread Werner Thie
Hi all May I ask what's the best practice for creating elements hidden at their proper position. So far I resorted to the rather clumsy trick of creating them with a high negative margin and then hiding them in the first go through a 'resize' event, because I had to position them anyway

[qooxdoo-devel] Sending an event directly to an element

2010-06-28 Thread Werner Thie
Hi all Just took me the better part of the last two hours to sift through the source to figure out how to send an event directly to a button. Now I want to make sure I'm doing the right thing - does anybody object: var btn = new qx.ui.form.Button('Test'); btn.addListener(execute, function(e)

Re: [qooxdoo-devel] speed of development

2010-06-16 Thread Werner Thie
So, I have another 2 cents to go :-) Mailing list I like the activity and responsiveness of the mailing list, in my opinion one of the better lists overall with very helpful people! Back end selection Although we've seen some back and forth discussions about what belongs onto the server and

Re: [qooxdoo-devel] speed of development

2010-06-12 Thread Werner Thie
Hi Just a few remarks: How do we get an even better qooxdoo framework? It's free and open, it has a decent licensing scheme and therefore the only way to improve it IS by contributing, on the list, with code, with helping out others, by advertising it and NOT by kicking the core developers

Re: [qooxdoo-devel] Possible to switch off column select menu in table?

2010-06-11 Thread Werner Thie
As always, it's sitting there and doesn't say a word... Thxs, Werner On 11.06.2010 01:44, Derrell Lipman wrote: On Thu, Jun 10, 2010 at 19:06, Daniel Hirtzbruch dan...@hirtzbruch.eu mailto:dan...@hirtzbruch.eu wrote: Hello Werner, if I don't misunderstand you the property you're

[qooxdoo-devel] Possible to switch off column select menu in table?

2010-06-10 Thread Werner Thie
Hi Don't know what part of the table this menu belongs to, tried to switch it off with table.setNewColumnMenu(function(){}); to no avail. Digging in the headerrenderer, pane and columnmodel doc also made me not wiser... Thxs for helping me out, Werner attachment:

Re: [qooxdoo-devel] qooxlisp live

2010-06-09 Thread Werner Thie
. Better? kt Cheers, Chris Am 08.06.2010 22:27, schrieb Werner Thie: Ken when hitting your URI, it seems something's wrong with the JScript enabled code, the display stays gray, the only element attached to body is thediv checking JScript being enabled. Same with all browsers! Thxs, Werner

Re: [qooxdoo-devel] In search of a GUI designer

2010-06-09 Thread Werner Thie
The non-optimized state of the code can be accepted, in my opinion, because the UI generation is done only once, at application setup, so the gains from any potential code-intensive optimization will be minimal. What is important for me, when coding, is to be able to quickly throw in a table

[qooxdoo-devel] break on error in Firebug in func gecko()

2010-06-09 Thread Werner Thie
Hi all A rather irritating break on error() seems to creep up the moment I have qx.ui.form.TextField()'s visible on the page. If in Firefox/Firebug (latest versions) is open and the cursor is moved over a text field Firebug chokes with Break on Error: 'Permission denied to access property

Re: [qooxdoo-devel] break on error in Firebug in func gecko()

2010-06-09 Thread Werner Thie
Thxs, Werner On 09.06.2010 17:30, thron7 wrote: On 06/09/2010 04:32 PM, Derrell Lipman wrote: On Wed, Jun 9, 2010 at 10:28, thron7thomas.herchenroe...@1und1.de mailto:thomas.herchenroe...@1und1.de wrote: On 06/09/2010 01:53 PM, Werner Thie wrote: Hi all A rather

Re: [qooxdoo-devel] How can I get a Please wait... HTML banner up while qooxdoo loads?

2010-06-08 Thread Werner Thie
Hi I usually put the following into the main page and let qooxdoo take over the moment it's loaded (this can even go so far that one could delete the node with id playground if it's not needed anymore div id=playground style=width: 100%; height: 100%; min-height: 100%; position:

Re: [qooxdoo-devel] In search of a GUI designer

2010-06-08 Thread Werner Thie
...writing business logic might even constitute fun whereas writing wads and wads of containers in containers containing widgets is abusing the programmer as a GUI compiler. And contrary to all logic which should be applied to GUI design customers often know what they want the moment when

Re: [qooxdoo-devel] qooxlisp live

2010-06-08 Thread Werner Thie
Ken when hitting your URI, it seems something's wrong with the JScript enabled code, the display stays gray, the only element attached to body is the div checking JScript being enabled. Same with all browsers! Thxs, Werner On 08.06.2010 20:23, Kenneth Tilton wrote: Version 2.0 of the

Re: [qooxdoo-devel] [BEGINNER QUESTION]: Problem with unicode string in create-aplication.py for

2010-06-02 Thread Werner Thie
Hi What value do you see when you do an import sys print sys.maxunicode at the python prompt. It's 0x (or 65535) for UCS-2, and 0x10 (or 1114111) for UCS-4 All the qooxdoo tools work just fine for me with Python25 or Python26 compiled for UCS-2 on either Mac, Linux or MSW, never

Re: [qooxdoo-devel] ANNC: qooxlisp 0.1: qooxdoo + Common Lisp

2010-05-27 Thread Werner Thie
Hi Pretty simple: the app developer has to throw a mention of any built-in qooxdoo class they want to use into Application.js. By the same token, any new class they want to use should be authored the usual way, by adding a .js file and doing the generate step. That's exactly how I do it with

[qooxdoo-devel] Finding a widget

2010-05-27 Thread Werner Thie
Hi Speaking of late binding - is there an easy way to find a widget buried somewhere down in the visual architecure? Usage would be like someWidget.findChildWidget('magic id').setValue('Thought so!); Did I miss something in the docs or do I have to build such a mechanism myself? (issuing

Re: [qooxdoo-devel] Finding a widget

2010-05-27 Thread Werner Thie
Derrell Lipman wrote: On Thu, May 27, 2010 at 17:19, Werner Thie wer...@thieprojects.ch mailto:wer...@thieprojects.ch wrote: Hi Speaking of late binding - is there an easy way to find a widget buried somewhere down in the visual architecure? Usage would be like

Re: [qooxdoo-devel] copying assets not working anymore in V1.1

2010-05-18 Thread Werner Thie
thron7 wrote: On 05/18/2010 07:57 AM, Werner Thie wrote: Hi just stumbled over a problem when deleting the build directory completely and doing a generate.py build. I have the following line in my Application.js file: #asset(../translation/*) The translation directory is copied over

[qooxdoo-devel] copying assets not working anymore in V1.1

2010-05-17 Thread Werner Thie
Hi just stumbled over a problem when deleting the build directory completely and doing a generate.py build. I have the following line in my Application.js file: #asset(../translation/*) The translation directory is copied over to the build no problem in qooxdoo 1.0.1, the copy fails in V1.1

Re: [qooxdoo-devel] Require a live form; what are my options?

2010-05-12 Thread Werner Thie
Correct, I stopped the server Werner thron7 wrote: If you read that far give it a try and hit http://nqx.thieprojects.ch which gives you a few buttons... Werner, going to that URL it just shows a Usually not shown message !? T.

Re: [qooxdoo-devel] Require a live form; what are my options?

2010-05-11 Thread Werner Thie
#-*- coding: iso-8859-1 -*- qxcalculator.py - a minimal Qooxdoo calculator author : Werner Thie, wth last edit : wth, 24.03.2010 modhistory : 11.03.2010 - wth, created import sys, os from twisted.internet import reactor from twisted.python import log from nevow import static, athena, loaders

Re: [qooxdoo-devel] Require a live form; what are my options?

2010-05-11 Thread Werner Thie
Hi never thought that discussing solutions and voicing opinions would be called 'disservice': I always thought that this is the point in having mailing lists. But you setting me straight I humbly apologize for having voiced my clearly not counting opinion on this list. Werner Greg Beaver

Re: [qooxdoo-devel] Require a live form; what are my options?

2010-05-10 Thread Werner Thie
Nick Watkins wrote: I can't seem to find anything regarding the subject, or perhaps I'm not searching for the right thing. For an application I'm developing, I require a form whose elements are connected to data in a database. Changes on the client side are reflected in the database in

[qooxdoo-devel] CSS declaration syntax error since updating to 1.1

2010-05-05 Thread Werner Thie
Hi all I see the following error (Opera/Dragonfly, Firefox/Firebug, etc) since upgrading to qooxdoo 1.1 Opera/Dragonfly Declaration syntax error margin: 0px; padding 0px; overflow: hidden; height: 100%; width: 100%; -^ Firefox/Firebug Expected ':' but found '0px'.

[qooxdoo-devel] CSS declaration syntax error since updating to 1.1

2010-05-04 Thread Werner Thie
Hi all I see the following error (Opera/Dragonfly, Firefox/Firebug, etc) since upgrading to qooxdoo 1.1 Opera/Dragonfly Declaration syntax error margin: 0px; padding 0px; overflow: hidden; height: 100%; width: 100%; -^ Firefox/Firebug Expected ':' but found '0px'.

Re: [qooxdoo-devel] Loading a class by name

2010-04-14 Thread Werner Thie
Hi on an other note - I spent the last two days with a nasty problem occurring with WebKit. If using JS in a multifile situation you can easily observe that WebKit (Safari, Chrome) does NOT in order loading of given JS files, meaning you end up in a situation where JS code might sometimes

[qooxdoo-devel] WebKit loads separate JS files NOT in order

2010-04-14 Thread Werner Thie
Hi I spent the last two days with a nasty problem occurring with WebKit. If using JS in a multifile situation you can easily observe (just put a debugger; or alert statement at the beginning of the file) that WebKit (Safari, Chrome) does NOT in order loading of given JS files, meaning you end