Re: [qooxdoo-devel] Strange Safari-only bug

2009-04-20 Thread tsmiller
or to combine the two different ways which allows you to set a widget to a percent of the document height and width I do the following ( doing it this way instead of using all percentages allows the widget to be resized using the mouse, for example a qooxdoo window ) widget.set({ width:qx.bom.D

Re: [qooxdoo-devel] Internet Explorer performance

2009-04-20 Thread tsmiller
Massimo, One of the most appealing things about Qooxdoo is that it abstracts away the browser differences. It seems to me that we are going back to where we started from if we start writing browser specific code. My personal philosophy is to write my code the best that I can and let the pieces

Re: [qooxdoo-devel] Table Cell Editor Showcase with no vertical scrollbar

2009-04-20 Thread Marcel Ruff
Uups, sorry the noice, the window was to small to show the scrollbar. Mea culpa, Marcel Marcel Ruff schrieb: > Hi, > > I have copied the table code from > http://demo.qooxdoo.org/current/demobrowser/#table~Table_Cell_Editor.html > > but when I reduce the Window height no scrollbar > of the table

[qooxdoo-devel] Table Cell Editor Showcase with no vertical scrollbar

2009-04-20 Thread Marcel Ruff
Hi, I have copied the table code from http://demo.qooxdoo.org/current/demobrowser/#table~Table_Cell_Editor.html but when I reduce the Window height no scrollbar of the table is shown. What could be the reason? Thanks Marcel --

Re: [qooxdoo-devel] Internet Explorer performance

2009-04-20 Thread Jim Hunter
I can confirm that the JavaScript engine in IE is horribly slow compared to any other browser. Reusing objects helps dramatically because IE is also horrible at freeing memory. Even if you clear all your objects out, IE may never release them. It is so bad, that not even closing the page and reopen

Re: [qooxdoo-devel] howto achieve the layout of the playground demo?

2009-04-20 Thread sNIk
thank you. now i understand how to layout with qx correctly. my mind was still polluted with echo3 layouting. Noggin182 wrote: > > Have you downloaded the full SDK? If so you should have a folder in > there called application. In this folder you will find the full source > for the playground,

Re: [qooxdoo-devel] Internet Explorer performance

2009-04-20 Thread Stefan Volbers
Fabian Jakobs wrote: > IE really is so slow but there are a few things you can do: > 2. Use the build version. Some of the optimizations are especially > useful for IE Hi Massimo, see here: http://qooxdoo.org/documentation/0.8/snippets?s=mshtml for browser specific optimization (but bear in

Re: [qooxdoo-devel] Strange Safari-only bug

2009-04-20 Thread Fabian Jakobs
Hi Vincent, I'm not sure if you hit a Safari or qooxdoo bug but if you only want to size the widget to the viewport there is a better way. You can simply add your widget to the root widget and configure it to resize with the page by setting the correct layout properties: this.getRoot().add(widg

Re: [qooxdoo-devel] Internet Explorer performance

2009-04-20 Thread Fabian Jakobs
Hi > Hi Massimo, > > did you see the news posting about the various benchmarks posted on the > Qooxdoo website recently: > > http://news.qooxdoo.org/qooxdoo-strong-in-taskspeed-benchmark > > If you look at the two graphs, note the factor of 5 in the axis scale. So > without looking into the d

Re: [qooxdoo-devel] IE6 and qx.ui.tree icons problem : any suggestion?

2009-04-20 Thread Stefan Volbers
One more thing, I searched the qooxdoo docs and here: http://qooxdoo.org/about/release_notes/0.8.1 I found this: "In IE6 some icons showed a black background (image transparency broken)." Couldn't tell why that'd only appear outside of your office, but well... You might want to check an update t

Re: [qooxdoo-devel] IE6 and qx.ui.tree icons problem : any suggestion?

2009-04-20 Thread Stefan Volbers
Hi Charlie, I'm neither core dev nor have I stumbled upon the problem you describe, but I too have to support my customers IE6 installations when providing beautiful qooxdoo apps, and, too, I have had some issues with this browser. Sadly up to now I didn't use the tree widget (but works fine in

[qooxdoo-devel] Strange Safari-only bug

2009-04-20 Thread Vincent Bernardi
Hi everyone, I use the following line of code: --- this.setUserBounds(qx.bom.Viewport.getScrollLeft(), qx.bom.Viewport.getScrollTop(), qx.bom.Viewport.getWidth(), qx.bom.Viewport.getHeight()); --- to make my widget's position and size follow the ViewPort. I am testing it under Safari

Re: [qooxdoo-devel] RPC: Request ID doesn't match?

2009-04-20 Thread Stefan Volbers
Hi Michael, qooxdoo's php rpc backend does safely recognize the sent id. If everything's set up well, there should really be no such problem. Matt is right, you should really inspect the rpc communication by firebug means; you might come across some server messages which could help identify th

Re: [qooxdoo-devel] Internet Explorer performance

2009-04-20 Thread Fritz Zaucker
Hi Massimo, did you see the news posting about the various benchmarks posted on the Qooxdoo website recently: http://news.qooxdoo.org/qooxdoo-strong-in-taskspeed-benchmark If you look at the two graphs, note the factor of 5 in the axis scale. So without looking into the detailed benchmar

Re: [qooxdoo-devel] Problems creating a new Shadow decorator.

2009-04-20 Thread Fabian Jakobs
MootCycle schrieb: > Yeah, I was able to clear up all the errors using asset hints. Is this a case > where adding "Check your asset hints" to the warning message would be > helpful? > > As for the style property, I was just copying the structure from the > qx.theme.modern.Decoration file. Everythin

Re: [qooxdoo-devel] virtual table with rowSpan: Mouse events don't reach cell widget

2009-04-20 Thread Fabian Jakobs
All three issues should be fixed in rev. 18783. Best Fabian >> Hi, >> >> I'm using the qx.ui.virtual.layer.WidgetCellSpan v0.8.2 >> and have noticed following: >> >> 1. If colSpan=2 is declared: >>I have an Atom in the cell with an own "click" event listener. >>This is not reached anymore.

Re: [qooxdoo-devel] getting started with UploadWidget

2009-04-20 Thread Christian Schmidt
Hi Marta, the error occurs because you call this: uploadContainer.add(uploadWindow, {top: 100, left: 100, right: 300}); //getUploadPage : function() The "uploadContainer" doesn't implement the "IDesktop" interface. You must directly add the window to the root (application) or to a "Desktop" w

Re: [qooxdoo-devel] Table can block the browser

2009-04-20 Thread Jean-Baptiste BRIAUD -- Novlog
http://bugzilla.qooxdoo.org/show_bug.cgi?id=2262 I just wonder if one of us can reproduce it without special code : just a 100 pixels table height with 3 lines in it (under FF/Windows). On Apr 20, 2009, at 11:20 AM, Fabian Jakobs wrote: > Hi Jean-Baptiste, > > this sounds like a severe table

[qooxdoo-devel] Internet Explorer performance

2009-04-20 Thread mapp...@libero.it
Hi, I am developing a, not too much complex, web application using Qooxdoo. It works great with all browsers but it is dramatically slow using Internet Explorer. The slowness is especially evident in window construction, event handling and the setting of a table model to a table. Here some exam

[qooxdoo-devel] IE6 and qx.ui.tree icons problem : any suggestion?

2009-04-20 Thread Charlie
Hello I know this message is quite a bottle in the sea, but I am encountering problems with a simple qx.ui.tree object (qooxdoo 0.8) in a given version of IE6. I hate it but the client is a bank and of course has very high level of security and I am not authorized to upgrade the IE... The proble

Re: [qooxdoo-devel] howto achieve the layout of the playground demo?

2009-04-20 Thread Matthew Gregory
Have you downloaded the full SDK? If so you should have a folder in there called application. In this folder you will find the full source for the playground, demobrowser, feedreader and portal. It isn't too difficult to recreate the layout just from looking at the source for those HTH, Matt

Re: [qooxdoo-devel] RPC: Request ID doesn't match?

2009-04-20 Thread Matthew Gregory
Hi Michael, I've not used to the php version of the rpc before. The best thing to do first would be to look at what is actually being sent and recieved. If you look at the net tab in firebug this will tell you. If you could post both the request and the repsonce that would be great. Michael Och

Re: [qooxdoo-devel] Table can block the browser

2009-04-20 Thread Fabian Jakobs
Hi Jean-Baptiste, this sounds like a severe table bug. Can you open a bug report for it and assign it to me? Just paste the contents of this mail. Best Fabian > Hi the list, > > Yesterday, we found that "sometime" the browser could be blocked > (sometime we also got the "script take too long d

Re: [qooxdoo-devel] Vertical toolbar

2009-04-20 Thread Fabian Jakobs
dmbaggett schrieb: > What's the proper way to make a vertical toolbar in 0.8.2? I ended up having > subclass a bunch of the qx.ui.toolbar classes to replace their hardcoded > HBox layouts with VBox. Looking at the code, it seems like it would be > pretty easy to allow both HBox and VBox based on a

Re: [qooxdoo-devel] Table with rowspan?

2009-04-20 Thread Fabian Jakobs
Hi Marcel, > Derrell Lipman schrieb: > >> On Thu, Apr 16, 2009 at 6:10 PM, Jim Hunter >> mailto:diamondcomput...@gmail.com>> wrote: >> >> To me, it looks like for your example you only have one column and >> that column has lots of data in it. I would use the Html renderer and >> 'f

Re: [qooxdoo-devel] virtual table with rowSpan: Mouse events don't reach cell widget

2009-04-20 Thread Fabian Jakobs
Hi Marcel, some areas of the virtual widgets are still in a very early state. The cell spanning is one such area. I have opened bug reports for your issues. If you want to track these bugs you can add yourself on the bugs' CC list. > Hi, > > I'm using the qx.ui.virtual.layer.WidgetCellSpan v0.8

[qooxdoo-devel] howto achieve the layout of the playground demo?

2009-04-20 Thread sNIk
hello there! i would like to rebuild the same layout as shown in the playground-demo (http://demo.qooxdoo.org/current/playground). i dont need any functionality, only the layout. :) any suggestions? -- View this message in context: http://n2.nabble.com/howto-achieve-the-layout-of-the-playgro

Re: [qooxdoo-devel] Hide header row in TreeVirtual

2009-04-20 Thread Jim Hunter
I think if you simply set the height to 0 it will work, and that is the easiest thing to do. Jim On Fri, Apr 17, 2009 at 12:59 PM, dmbaggett wrote: > > What is the proper way to hide the header row in a (single-column) > TreeVirtual? I looked at making my own headerrenderer, but that seemed > a

[qooxdoo-devel] Hide header row in TreeVirtual

2009-04-20 Thread dmbaggett
What is the proper way to hide the header row in a (single-column) TreeVirtual? I looked at making my own headerrenderer, but that seemed awfully complicated. Do I really need to do that? Dave -- View this message in context: http://www.nabble.com/Hide-header-row-in-TreeVirtual-tp23104983p2310

[qooxdoo-devel] Vertical toolbar

2009-04-20 Thread dmbaggett
What's the proper way to make a vertical toolbar in 0.8.2? I ended up having subclass a bunch of the qx.ui.toolbar classes to replace their hardcoded HBox layouts with VBox. Looking at the code, it seems like it would be pretty easy to allow both HBox and VBox based on a constructor param. (Should

[qooxdoo-devel] contextMenu event doesn't fire in IE

2009-04-20 Thread dmbaggett
I see this has been discussed before, but I cannot understand enough of the discussion to solve my problem. So forgive me if this is covering old ground. If you look at the Table Events demo in the demobrowser, you will see a difference in behavior between Firefox 3.1/3.5 and IE7. In FF, the even

[qooxdoo-devel] RPC: Request ID doesn't match?

2009-04-20 Thread Michael Ochs
Hi, I still have problems with my rpc stuff. :/ Now I got an error and I think this is because the id of the rpc request is not given back by the php rpc server. Does anybody know how to change that? I installed the default rpc server from the qooxdoo pack. In Firebug in always says someth