[qooxdoo-devel] Context Menu on Table

2009-06-09 Thread Daniel Nuriyev
Hello. I tried the context menu over table example ( http://demo.qooxdoo.org:8181/current/demobrowser/#table~Table_Context_Menu.html) and I also tried to create my own table with a context menu but the context menu does not show. I tried both Firefox and IE. I do not get any exception. Maybe I mis

Re: [qooxdoo-devel] Animation framework for widgets

2009-06-09 Thread Stefan Volbers
Hi Jean-Noël, in earlier days the core devs promoted the "appear" event which belongs to qx.ui.core.Widget; nowadays seems like they favor "resize" (seen somewhere in the online docs). I use that for instance for centering an opening qx.ui.window.Window. Ain't tested the animations, but I think

Re: [qooxdoo-devel] Animation framework for widgets

2009-06-09 Thread Jean-Noël Rivasseau
Thanks, I added myself as CC. My biggest problem right now is that using .getContainerElement().getDomElement() normally returns null when the widget is not "ready" (eg added to the DOM). Is there an event I can listen to to know when Qx refresh has occured and the element is ready ? Jean-Noel O

Re: [qooxdoo-devel] Best Way to Access Child Objects Programmatically

2009-06-09 Thread Gene Amtower
On Tue, 2009-06-09 at 10:51 -0400, Derrell Lipman wrote: > On Tue, Jun 9, 2009 at 9:29 AM, Gene Amtower > wrote: > > So, can I add an entry in Appearance.js with JUST an alias to > the original widget appearance entry, as in? > > appearances : > >

Re: [qooxdoo-devel] Best Way to Access Child Objects Programmatically

2009-06-09 Thread Gene Amtower
Thanks, Alex. I appreciate the answers. You confirmed my suspicions about using the ID values, but the page you referenced (http://qooxdoo.org/documentation/0.8/ui_develop ) didn't help me understand the big picture, especially how appearance and child access are inter-related through the ID

Re: [qooxdoo-devel] Best Way to Access Child Objects Programmatically

2009-06-09 Thread Derrell Lipman
On Tue, Jun 9, 2009 at 9:29 AM, Gene Amtower wrote: > So, can I add an entry in Appearance.js with JUST an alias to the original > widget appearance entry, as in? > > appearances : > > { > "my-widget" : > { > alias : "button", > } > } > > > then reference this widget in my c

Re: [qooxdoo-devel] RadioGroup allows empty selection (0.8.2)

2009-06-09 Thread Christian Schmidt
Hi Will, Thanks for writing your feedback. There is a bug report for this issue [1], you can add you to CC if you will be informed about the state. Cheers, Chris [1] http://bugzilla.qooxdoo.org/show_bug.cgi?id=2297 WillP schrieb: > I have noticed that the RadioGroup class will allow there to

Re: [qooxdoo-devel] Debugging IE problems

2009-06-09 Thread Alexander Back
Hi Cajus, Cajus Pollmeier schrieb: > This is everything I can get from IE: > > LOG: 397547ms [ function(element, name, value, smart), > qx.html.Element:_copyData, qx.core.Object:base, qx.html.Image:_copyData, > qx.html.Element:__flush, ... ] > > Do you know a method to get more? I'm using getSta

[qooxdoo-devel] RadioGroup allows empty selection (0.8.2)

2009-06-09 Thread WillP
I have noticed that the RadioGroup class will allow there to be no selected item when the currently selected item is clicked - the changeSelected event has no item in it's data property as the group has an empty selection. While I can see that this appears deliberate and an initial state of "no s

Re: [qooxdoo-devel] Debugging IE problems

2009-06-09 Thread Cajus Pollmeier
Alexander Back schrieb: > Hi Cajus, > > Cajus Pollmeier schrieb: >> qx.ui.splitpane.* >> qx.ui.container.Resizer > Yes, maybe one of those, but I guess it's buried deeper. > >> Almost everything adapts its size, but these may be involved when the error >> occurs. >> I just tried to get some more

Re: [qooxdoo-devel] A 'loading' blocker

2009-06-09 Thread Alexander Back
Hi Charles, Charles SALMON schrieb: > In my application, I am using some contents that are updated following > an RPC call (for example). > I am currently using a blocker attached to this content to signal that > content is being updated: > - When synchronization start, the blocker is started with

Re: [qooxdoo-devel] Modal window and blocker opacity

2009-06-09 Thread Alexander Back
Hi Charles, Charles SALMON schrieb: > When opening a modal window (registered to the root widget), I would > like the rest of all UI components having an opacity of 0.5. > I did try the following: > this.getRoot().setBlockerOpacity(0.5); > > but it seems that it does not work. > > Any suggestions

Re: [qooxdoo-devel] Debugging IE problems

2009-06-09 Thread Alexander Back
Hi Cajus, Cajus Pollmeier schrieb: > qx.ui.splitpane.* > qx.ui.container.Resizer Yes, maybe one of those, but I guess it's buried deeper. > Almost everything adapts its size, but these may be involved when the error > occurs. > I just tried to get some more information out of the IE, but the sta

Re: [qooxdoo-devel] Best Way to Access Child Objects Programmatically

2009-06-09 Thread Alexander Back
Hi Gene, Gene Amtower wrote: > I've looked at the code within the qx.ui.window.Window class, and I see > that the children are created within a method named > "_createChildControlImpl". I see that the children are created by > referencing their Appearance ID, but I don't see anything that actu

Re: [qooxdoo-devel] Debugging IE problems

2009-06-09 Thread Cajus Pollmeier
Hi Alexander, no, I don't use tables. Resizable... Maybe these: qx.ui.splitpane.* qx.ui.container.Resizer ? Almost everything adapts its size, but these may be involved when the error occurs. I just tried to get some more information out of the IE, but the stacktrace ends at the position where

[qooxdoo-devel] A 'loading' blocker

2009-06-09 Thread Charles SALMON
Hello, In my application, I am using some contents that are updated following an RPC call (for example). I am currently using a blocker attached to this content to signal that content is being updated: - When synchronization start, the blocker is started with an opacity of 0.5 - When the content i

[qooxdoo-devel] Modal window and blocker opacity

2009-06-09 Thread Charles SALMON
Hello, When opening a modal window (registered to the root widget), I would like the rest of all UI components having an opacity of 0.5. I did try the following: this.getRoot().setBlockerOpacity(0.5); but it seems that it does not work. Any suggestions ? Thanks a lot, Charles.

Re: [qooxdoo-devel] Cell merging in a table

2009-06-09 Thread Alexander Back
Derrell Lipman schrieb: > 2009/6/9 mailto:monika.f...@tieto.com>> > > > Is it possible to merge cells in the table? I could not find > anything about it in API or documentation. > > No, not in qx.ui.table.Table. You might look at the new Virtual widgets > (qx.ui.virtual.* I think) wher

Re: [qooxdoo-devel] Debugging IE problems

2009-06-09 Thread Alexander Back
Hi Cajus, Cajus Pollmeier wrote: > I've a problem running my qooxdoo application inside IE7 (IE8 in IE7 > mode, because I can't find any usable debugger...). IE stopps the script > with: "Invalid argument" > > Happening in line 335 of qx.bom.element.Style where "value" is "-5px" > and "name" i