Re: [qooxdoo-devel] How to get the size of an iframe

2010-04-22 Thread monika.falk
Hi Chris Yes, that is a good idea. I will try that. Thank you S pozdravem / Best regards, Monika F Message: 2 Date: Thu, 22 Apr 2010 17:19:22 +0200 From: Christian Hagendorn Subject: Re: [qooxdoo-devel] How to get the size of an iframe To: qooxdoo Development Message-ID: <4bd068fa.5090...

Re: [qooxdoo-devel] Application.onScriptLoaded()

2010-04-22 Thread Petr Kobalíček
But I can fill the bug report, no problem here;) On Fri, Apr 23, 2010 at 8:37 AM, Petr Kobalíček wrote: > Hi Martin, > > On Fri, Apr 23, 2010 at 8:08 AM, MartinWittemann > wrote: >> >> Hello Petr, >> did you also found out what changes in qooxdoo were responsible for that >> change of your app?

Re: [qooxdoo-devel] Application.onScriptLoaded()

2010-04-22 Thread Petr Kobalíček
Hi Martin, On Fri, Apr 23, 2010 at 8:08 AM, MartinWittemann wrote: > > Hello Petr, > did you also found out what changes in qooxdoo were responsible for that > change of your app? > To be honest, not:( I just experimented what I need to call to initialize the qooxdoo. > > Petr Kobalíček wrote:

Re: [qooxdoo-devel] Application.onScriptLoaded()

2010-04-22 Thread MartinWittemann
Hello Petr, did you also found out what changes in qooxdoo were responsible for that change of your app? Petr Kobalíček wrote: > > The main problem is that qooxdoo not contains possibility for setting > custom loaders. I don't want to pack my application with qooxdoo so I > always need to call

Re: [qooxdoo-devel] Application.onScriptLoaded()

2010-04-22 Thread Petr Kobalíček
Hi Martin, I solved the thing, but I'm not happy about the qooxdoo way - I need to call qx.core.Init.ready(). The main problem is that qooxdoo not contains possibility for setting custom loaders. I don't want to pack my application with qooxdoo so I always need to call qx.core.Init.ready() after

Re: [qooxdoo-devel] odd model behavior with qx.ui.tree.TreeFolder

2010-04-22 Thread Greg Beaver
On 4/20/10 3:06 AM, MartinWittemann wrote: > Hello Greg, > I took a look at your example but I really cold not figure out whats > happening here. Sorry! > But if you say that cloning the reference helps, then someone dispose the > former model. Or... do you rely on the changeModel event? Maybe that

Re: [qooxdoo-devel] binding problem with Tree and Storage

2010-04-22 Thread insulae
Thanks for your answer Martin, your example with the correction works perfectly. But in my example don't :(, It's still have the same problem described above. Please, if you can try my example, but without changing it, just attach the correction suggested in the event "execute" of the button1: ...

Re: [qooxdoo-devel] [english 100%] Re: Get Event on table header click?

2010-04-22 Thread smisonl...@googlemail.com
Hello, i try this code var hr = tcm.getHeaderCellRenderer(0, 0); hr.addListener("click", function(e) { alert("click"); }, this); bvut nothing happens on an headercellclick. Some ideas? >>

Re: [qooxdoo-devel] Get Event on table header click?

2010-04-22 Thread smisonl...@googlemail.com
> Am 22.04.2010 09:46, schrieb smisonl...@googlemail.com: > >> Hello, >> >> is it possible to get an click event on a tableheader cell click? i >> want to select all/deselect all entrys in a column. >> >> Thank you for your help >> >> ---

Re: [qooxdoo-devel] reference objects outside handler

2010-04-22 Thread Matthew Curry
Oh wow, guess I totally missed that. I like the straight URL request approach because I like RESTful web interfaces. Maybe rpc can do that too, I don't know rpc that well, but at first glance at it, you'd need some specialized server logic. Thanks for the help. -Matt On Thu, Apr 22, 2010 at

Re: [qooxdoo-devel] Window background gradient

2010-04-22 Thread Jim Hunter
Turns out that the setDecorator method requires a Decoration object be passed in. So I tried creating a background decorator and assigning it the background image used in the scrollbar and I don't get any errors but the background of the window doesn't change. If I apply that same decorator to one

Re: [qooxdoo-devel] Example config.json for deploying production application on remote server

2010-04-22 Thread panyasan
Thanks! I'll try that. The generator is really an awesome tool. C. -- View this message in context: http://qooxdoo.678.n2.nabble.com/Example-config-json-for-deploying-production-application-on-remote-server-tp4941705p4946199.html Sent from the qooxdoo mailing list archive at Nabble.com.

Re: [qooxdoo-devel] Problems with cellrenderer.String

2010-04-22 Thread Christian Hagendorn
Hi ReHa, I'm not a table expert, but it seems to me that this is bug. Could you please open a bug report for this issue: http://bugzilla.qooxdoo.org/ Thanks, Chris Am 22.04.2010 17:32, schrieb ReHa: > Hello, > > i tried to use the qx.ui.table.cellrenderer.String like: > var tcm = table.getTable

Re: [qooxdoo-devel] Problems with Animation Effects?

2010-04-22 Thread Joachim Baran
On 22 April 2010 16:40, Christian Hagendorn wrote: > Yes, the original implemented was designed for animating on > low-level/BOM animations. > http://bugzilla.qooxdoo.org/show_bug.cgi?id=1635 Alright, I understand the problem now. Fading effects are more than fine with me though. Joachim -- B.1

Re: [qooxdoo-devel] Problems with Animation Effects?

2010-04-22 Thread Christian Hagendorn
Hi Joachim, >> the animation effects are not designed for qooxdoo widgets. So this is >> the main problem, sorry. >> > I am not quite sure what you mean by that. So, there are objects which > cannot be animated? > Yes, the original implemented was designed for animating on low-level/BOM

[qooxdoo-devel] Problems with cellrenderer.String

2010-04-22 Thread ReHa
Hello, i tried to use the qx.ui.table.cellrenderer.String like: var tcm = table.getTableColumnModel(); tcm.setDataCellRenderer(1, new qx.ui.table.cellrenderer.String("","","","bold")); tcm.setDataCellRenderer(5, new qx.ui.table.cellrenderer.String("right", "", "", "")); But all my settings are i

Re: [qooxdoo-devel] Problems with Animation Effects?

2010-04-22 Thread Joachim Baran
Hi, On 22 April 2010 16:13, Christian Hagendorn wrote: > But the fade effect should work. The problem in your example was that > hide() is not enough, the opacity must also set to zero. Here your > example with the fade effect: http://tinyurl.com/28zagrf Thanks a lot for that! > the animation ef

Re: [qooxdoo-devel] How to get the size of an iframe

2010-04-22 Thread Christian Hagendorn
Hi Monika, I would try to load an empty Iframe and when the empty Iframe appears call getBounds to get the dimensions. After that I would try to load the correct source. Does this solve your issue? Cheers, Chris Am 22.04.2010 16:43, schrieb monika.f...@tieto.com: > Thanks Chris, that works

Re: [qooxdoo-devel] Selenium with qooxdoo

2010-04-22 Thread Olivier ZORO-BI
Daniel Wagner wrote: > Hi Olivier, > > there's a bug[1] in qooxdoo's DateField that causes it to behave > differently from the ComboBox. I just updated the Simulator contrib > (trunk/tool/selenium/user_extension/user-extensions-qooxdoo.js, > r19988) with a workaround. If you use that file, you s

Re: [qooxdoo-devel] Problems with Animation Effects?

2010-04-22 Thread Christian Hagendorn
Hi Joachim, the animation effects are not designed for qooxdoo widgets. So this is the main problem, sorry. I played a bit with your example and it seems to me that moving effects are not really possible, due to the widget structure. But the fade effect should work. The problem in your example

Re: [qooxdoo-devel] table cellrenderer

2010-04-22 Thread Petr Kobalíček
This is ld topic:) On Thu, Apr 22, 2010 at 4:09 PM, ReHa wrote: > > I have exactly the same problem. Is there any solution in the meantime? > > Thanks - ReHa. > -- > View this message in context: > http://qooxdoo.678.n2.nabble.com/table-cellrenderer-tp2609916p4942920.html > Sent from the qoo

Re: [qooxdoo-devel] How to get the size of an iframe

2010-04-22 Thread monika.falk
Thanks Chris, that works fine. Now I am wondering if I somehow I am able to get the Iframe dimensions before onload event. Because depending on size of the user viewport I would show different amount of columns in the table. Any idea? S pozdravem / Best regards, Monika F

Re: [qooxdoo-devel] table cellrenderer

2010-04-22 Thread ReHa
I have exactly the same problem. Is there any solution in the meantime? Thanks - ReHa. -- View this message in context: http://qooxdoo.678.n2.nabble.com/table-cellrenderer-tp2609916p4942920.html Sent from the qooxdoo mailing list archive at Nabble.com. -

[qooxdoo-devel] Problems with Animation Effects?

2010-04-22 Thread Joachim Baran
Hi, I am encountering some strange behaviour of the animation effects in Qooxdoo 1.01. Some of them work, others do not. I set-up some elements of a form as hidden (by calling .hide() on them) and I want to let them appear with an animated effect when .show() is called on them. Unfortunately, thi

Re: [qooxdoo-devel] question about qooxdoo twitter tutorial part 3

2010-04-22 Thread Christian Hagendorn
Hi, > i am in love with qooxdoo framework. really nice work and it rocks. Thank you! > i am following the twitter tutorial. in part 3 the application makes > requests to cross domains (twitter, yahoo etc.). is this normal? i > guess normally the browser must block the requests to cross domains

Re: [qooxdoo-devel] Selenium with qooxdoo

2010-04-22 Thread Daniel Wagner
Hi Olivier, there's a bug[1] in qooxdoo's DateField that causes it to behave differently from the ComboBox. I just updated the Simulator contrib (trunk/tool/selenium/user_extension/user-extensions-qooxdoo.js, r19988) with a workaround. If you use that file, you should be able to access the Dat

[qooxdoo-devel] question about qooxdoo twitter tutorial part 3

2010-04-22 Thread zekUs
Hi there, i am in love with qooxdoo framework. really nice work and it rocks. i am following the twitter tutorial. in part 3 the application makes requests to cross domains (twitter, yahoo etc.). is this normal? i guess normally the browser must block the requests to cross domains because of same

Re: [qooxdoo-devel] reference objects outside handler

2010-04-22 Thread Derrell Lipman
On Wed, Apr 21, 2010 at 16:47, Matthew Curry wrote: > Reviving a months-old thread... > > I'm encountering a similar problem, but with an event-handler that is a > closure. > > The relevant code is below. In the main function I have a local > variable, getfeeds_req, that is an instance of qx.io.

Re: [qooxdoo-devel] How to get the size of an iframe

2010-04-22 Thread Christian Hagendorn
Hi Monika, please try getBounds() [1], this returns a Map with the computed location and dimension from the layout manager. Cheers, Chris [1] http://demo.qooxdoo.org/current/apiviewer/#qx.ui.core.LayoutItem~getBounds Am 22.04.2010 13:27, schrieb monika.f...@tieto.com: > Hi Everyone > > I am

Re: [qooxdoo-devel] Get Event on table header click?

2010-04-22 Thread Christian Hagendorn
Am 22.04.2010 09:46, schrieb smisonl...@googlemail.com: > Hello, > > is it possible to get an click event on a tableheader cell click? i > want to select all/deselect all entrys in a column. > > Thank you for your help > > ---

[qooxdoo-devel] How to get the size of an iframe

2010-04-22 Thread monika.falk
Hi Everyone I am using an qx.ui.embed.Iframe in my app. I want to get the size of the iframe after onload event. However the methods getHeight and getWidth are returning null values. Any chances that you could help me? S pozdravem / Best regards, Monika F ---

Re: [qooxdoo-devel] Form child widgets alignment and spacing

2010-04-22 Thread MartinWittemann
If you derive from the Single rendere for example, it has already a layout set which you can access and change. But the code hast to be the same in any case. Regards, Martin -- View this message in context: http://qooxdoo.678.n2.nabble.com/Form-child-widgets-alignment-and-spacing-tp4924083p49421

Re: [qooxdoo-devel] Example config.json for deploying production application on remote server

2010-04-22 Thread thron7
The generator has no built-in functionality to achieve this. But you can always put the rsync command into a dedicated generator job using the "shell" config key. This way, you could trigger it with a 'generate.py ' invocation. If you need to run multiple such jobs at once, you could bundle them in

[qooxdoo-devel] Example config.json for deploying production application on remote server

2010-04-22 Thread panyasan
Hello, I am currently using shell scripts to copy over my built application to the test server with rsync. Since I remember that the generator could do this as well with a dedicated job, I wonder if someone is using this feature and has a snippet for me that I can expand on. Thanks! C. -- View

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

2010-04-22 Thread panyasan
Anwering myself: I should have read the thread more carefully. This worked: "let" : { "OPTIMIZE" :["variables", "basecalls", "strings"] ... } Sorry for the noise. Christian -- View this message in context: http://qooxdoo.678.n2.nabble.com/How-can-I-turn-off-optimizations-tp4903766p4941

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

2010-04-22 Thread panyasan
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" : { // don't optimize privates "code" : { "=optimize

Re: [qooxdoo-devel] Selenium with qooxdoo

2010-04-22 Thread Olivier ZORO-BI
Olivier ZORO-BI wrote: > Daniel Wagner wrote: > >> Hi Olivier, >> >> you have to load the qooxdoo user extensions into Selenium IDE as >> described here: >> >> http://qooxdoo.org/contrib/project/simulator#installing_in_selenium_ide >> >> Regards, >> Daniel >> >> Olivier ZORO-BI schrieb: >>

[qooxdoo-devel] Get Event on table header click?

2010-04-22 Thread smisonl...@googlemail.com
Hello, is it possible to get an click event on a tableheader cell click? i want to select all/deselect all entrys in a column. Thank you for your help -- ___ qooxdoo-devel ma

Re: [qooxdoo-devel] Application.onScriptLoaded()

2010-04-22 Thread MartinWittemann
Well, sounds like something has changed in qooxdoo if you can not upgrade from 1.0.1 so you can expect as much help as everybode else here. ;) But as long as I don't have more information than "it does not work" I can't do much. I don't even know what you are doing different than we do in our load

Re: [qooxdoo-devel] table like a cell selector?

2010-04-22 Thread Alexander Steitz
Hi, On Wednesday April 21 2010 23:31:20 dragon2k...@gmx.de wrote: > Is it easy posible to select only cells instead complete rows and > select them? Like a matrix? > > Or should i build better my own area? You can use the focus-indicator to show the current selected cell (already visible

Re: [qooxdoo-devel] Little table bug?

2010-04-22 Thread Alexander Steitz
Hi, On Wednesday April 21 2010 23:27:33 dragon2k...@gmx.de wrote: > When i set the first column to 0 like this > > resizeBehavior.set(0, { width:"0%", minWidth:0, maxWidth:0 }); > > the table header is ca 10 pixel width ad the contnt rows have > another width = - the wrong headerwidth

Re: [qooxdoo-devel] binding problem with Tree and Storage

2010-04-22 Thread MartinWittemann
Hello Juan, This sounds like an easy task for the data binding. Just take a look at the following playground example to see how it can be done. The trick is to use the selection of the controller instead of using the selection of the view. http://tinyurl.com/28enqxn Regards, Martin -- View thi

Re: [qooxdoo-devel] dynamic table

2010-04-22 Thread Alexander Steitz
Hi Martin, On Wednesday April 21 2010 15:02:21 Martin_GER wrote: > what is the easiest way to create a dymanic table. > I mean that the splits at each calling the table to be rebuilt. > It is necessary by new split-descriptions or other quantity of splits. What do you mean with dynamic table and s

Re: [qooxdoo-devel] Table cell add

2010-04-22 Thread Alexander Steitz
Hi, On Wednesday April 21 2010 16:50:26 smisonl...@googlemail.com wrote: > i have a table and want to add some single cells > > this.tables[i].getTableModel().setValue(0,row,j["data"][row]["title"]); > > but the script stops at that point. the value i want to set is avaiable. > What can be wr