Re: [qooxdoo-devel] Minimize WIndows

2010-03-11 Thread waysoftheearth
Okay, so how should I go about sharing the files? -- View this message in context: http://n2.nabble.com/Minimize-WIndows-tp4625897p4719810.html Sent from the qooxdoo mailing list archive at Nabble.com. -- Download Intel

Re: [qooxdoo-devel] Qooxdoo & DWR

2010-03-11 Thread waysoftheearth
I have a production app which uses a Qx front end that talks to the web tier via DWR. It was built several years ago, before Qx had its own out-of-the box transport layer, but the principle should be the same. To make it all go... 1. DWR generates javascript ajax "stubs" for you (based on your

[qooxdoo-devel] Get Formulaelements

2010-03-11 Thread smisonl...@googlemail.com
I add some widgets to a form via form.add(widget); but i dont see any method to access the added elements. Is this not possible? -- Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed com

[qooxdoo-devel] Little question about qxFocus and qxSelectable

2010-03-11 Thread benco
Hi ! I'm so happy... I currently do some experiments with the low level bom api (a native app case) and I spent almost two days debugging on IE - that's a surprise, surprise, surprise :P !. It was really annoying because it was mainly a problem of "lose of focus" on some elements. I tried to

Re: [qooxdoo-devel] Using qooxdoo-widgets to render html-tags

2010-03-11 Thread Mario Neudeck
Hi Alex, > Yes, using an inline application. > > > I guess that's exactly what you need. You can use the layout features at > inline applications, too. Just imagine that an inline app is a "normal" > qooxdoo application which is using an existing DOM node to integrate into the > page (absolut

[qooxdoo-devel] Qooxdoo & DWR

2010-03-11 Thread Matthew Devine
So I'm looking at using Qooxdoo to build an Inline RIA in an existing application that utilizes DWR to give access to my backend Java via Javascript. I'm a little confused on how to facilitate using the DWR methods within my Qooxdoo built application. If someone could give some insight it would b

Re: [qooxdoo-devel] size elements like label textfield, textarea?

2010-03-11 Thread Jim Hunter
http://qooxdoo.org/documentation/1.0/ui_layouting On Thu, Mar 11, 2010 at 9:13 AM, smisonl...@googlemail.com < smisonl...@googlemail.com> wrote: > Hello, > > how can i size the elemens like tat to the parent widget size? I want > to esize a lable to the full size but i cant add a layout and the

Re: [qooxdoo-devel] Can not generate project on my machine with China Locale

2010-03-11 Thread thron7
Great. My gut feeling from the output is that the error is occuring during macro expansion, more particularly, when expanding the TMPDIR macro. This is a macro that is pre-defined in the generator, and uses a Python module to get a path to a default-ish temp directory. This would also explain the d

[qooxdoo-devel] size elements like label textfield, textarea?

2010-03-11 Thread smisonl...@googlemail.com
Hello, how can i size the elemens like tat to the parent widget size? I want to esize a lable to the full size but i cant add a layout and their a no position propertys Thanks for every hint -- Download Intel® Parall

Re: [qooxdoo-devel] Can not generate project on my machine with China Locale

2010-03-11 Thread hchaojie
> Please use 'generate.py -s -v' ('-v' > in place of '-w'). This will produce quite a bit of output, so redirect > stdout and stderr to a file I attached the output file: http://n2.nabble.com/file/n4716353/source.out source.out -- View this message in context: http://n2.nabble.com/Can-not-gene

Re: [qooxdoo-devel] generate.py question: rename of the Application class

2010-03-11 Thread Derrell Lipman
On Thu, Mar 11, 2010 at 09:17, Christian Schmidt wrote: > Hi Derrell, > > you can use the "APPLICATION_MAIN_CLASS" macro for that. Only add this > to the let section form the config.json: > "APPLICATION_MAIN_CLASS" : "mynamespace.Application" > Thanks. Derrell --

Re: [qooxdoo-devel] generate.py question: rename of the Application class

2010-03-11 Thread Christian Schmidt
Hi Derrell, you can use the "APPLICATION_MAIN_CLASS" macro for that. Only add this to the let section form the config.json: "APPLICATION_MAIN_CLASS" : "mynamespace.Application" Cheers, Chris Am 11.03.2010 14:52, schrieb Derrell Lipman: > create-application.py generates a source hierarchy that i

[qooxdoo-devel] qx.ui.table.Table drag and drop

2010-03-11 Thread SCHÄFER , Michael
Hi, I am trying to implment a drop funtion on my table. But it doesen`t work. Here is a small code snippet from my listener: var table = new qx.ui.table.Table(tableModel); table.addListener("drop", function(e){ var data = e.getData("value"); var pageX = e.getPageX();

[qooxdoo-devel] qx.ui.table.Table drag and drop

2010-03-11 Thread SCHÄFER , Michael
Hi, I am trying to implment a drop funtion on my table. But it doesen`t work. Here is a small code snippet from my listener: var table = new qx.ui.table.Table(tableModel); table.addListener("drop", function(e){ var data = e.getData("value"); var pageX = e.getPageX();

[qooxdoo-devel] generate.py question: rename of the Application class

2010-03-11 Thread Derrell Lipman
create-application.py generates a source hierarchy that includes source/class//Application.js with definition of class .Application. For my current use, I need that file (and class, of course) to be named differently. When I rename the file and change the class name, I still get an error from gener

Re: [qooxdoo-devel] Adding listeners to qx.html.Element

2010-03-11 Thread thron7
Is the CollapsablePanel contrib [1] an inspiration? AFAICT, there are two demos of it online [2][3]: T. [1] http://qooxdoo.org/contrib/project#collapsablepanel [2] http://m53s12.vlinux.de/cboulanger/collapsablepanel/build/ [3] http://www.noggin182.com/qooxdoo/collapsablepanel/ On 03/11/2010 11:

Re: [qooxdoo-devel] Adding listeners to qx.html.Element

2010-03-11 Thread marbin
So, I want to build a custom grid widget, supporting things like selecting cells by click-drag, foldable sections of the grid etc. What is the recommended approach? My initial idea was to use the qx.html.* classes to have a more low-level control of the generated HTML and at the same time have per

Re: [qooxdoo-devel] (Small) issue with 1.0.1 API Viewer

2010-03-11 Thread Christian Schmidt
Hi Peter, thank you! I applied your patch on trunk with rev. 21741 and on branch 1_0_x with rev. 21740. Cheers, Chris Am 10.03.2010 19:24, schrieb Peter Schneider: > Hi List, > > while browsing the API, I found a minor little issue with the link in the > apply > method descriptions: > The link

Re: [qooxdoo-devel] Invalid Message?

2010-03-11 Thread Christian Schmidt
Hi Stefan, I remember that this was discussed in the past. Please have a look at [1]. If you have further questions, please ask. Cheers, Chris [1] http://n2.nabble.com/form-validator-custom-required-field-tp4575237ef678.html Am 10.03.2010 19:28, schrieb smisonl...@googlemail.com: > Hello, > >

Re: [qooxdoo-devel] setValue in Textfield

2010-03-11 Thread Ilkka Oksanen
On Thu, Mar 11, 2010 at 10:01 AM, smisonl...@googlemail.com < smisonl...@googlemail.com> wrote: > Their is a problem when i set the value to "0" > ID = 0; > textfield.setValue(ID); > > > throws an error and stop the script > > Did you check API documentation? setValue in this case expects String.

Re: [qooxdoo-devel] Using qooxdoo-widgets to render html-tags

2010-03-11 Thread Alexander Steitz
On Wednesday March 10 2010 18:02:15 Mario Neudeck wrote: > the main purpose of my question is to give google something to > search for. Therefore I need some html-tags. I have already a > standalone application and now I would like to do the final step to > integrate with an existing HTML page. And

[qooxdoo-devel] setValue in Textfield

2010-03-11 Thread smisonl...@googlemail.com
Their is a problem when i set the value to "0" ID = 0; textfield.setValue(ID); throws an error and stop the script ID = 0; textfield.setValue(ID+""); works?!? Why? -- Download Intel® Parallel Studio Eval Try the new s