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
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
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
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
--
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
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,
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
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
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
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
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
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
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
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
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
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.
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
32 matches
Mail list logo