[qooxdoo-devel] Table Cell Padding

2008-05-16 Thread Viorel
Hi, I am trying to do increase the row size of a table using : setRowHeight(size) where size is the Font size. The problem is that the cell text is less visible when the Font gets bigger. Is there a way to allways set the top padding to 0? I've tried to modify the

Re: [qooxdoo-devel] Table Cell Padding

2008-05-16 Thread Derrell Lipman
On Fri, May 16, 2008 at 8:41 AM, Viorel [EMAIL PROTECTED] wrote: Hi, I am trying to do increase the row size of a table using : setRowHeight(size) where size is the Font size. The problem is that the cell text is less visible when the Font gets bigger. Is there a way to allways set

Re: [qooxdoo-devel] How can I invoke Wing?

2008-05-16 Thread thron7
[EMAIL PROTECTED] wrote: Thomas, That's very nice to know. Can that be a full path name? My wing.exe is not in the search path. Should work ... why don't you give it a try?! (If you are using absolute paths, use cygwin paths like /cygdrive/c/programms/wingware/wing.exe...) Thomas

Re: [qooxdoo-devel] Attaching a ToolTip to a cell ?

2008-05-16 Thread Peter Schneider
Hi, Thanks to all your advice, it helped me writing a ToolTipTable class It may need some improvements but it basically works. [...] Greetings! Thank you Romain for your ToolTipTable! I could not check if it would improve my application 'till today and... It fits perfectly!! :-D I've

[qooxdoo-devel] Disable Browser action on Escape key

2008-05-16 Thread Ralf Sternberg
Hi folks, is there a chance to keep the browser from processing the Escape key? By default, browsers interrupt a currently running request when Escape is pressed. We have a case where Escape triggers a request, when Escape is pressed twice (for whatever reason), the second key press stops the

Re: [qooxdoo-devel] Attaching a ToolTip to a cell ?

2008-05-16 Thread Romain FLIEDEL
Peter Schneider a écrit : I've only come across one issue: When I resize the columns, the scroller variable will become undefined in the mousemove event handler. So the following member access fails : [ ... ] thanks for your bug fix Thank you again; and maybe we could continue to share

Re: [qooxdoo-devel] Attaching a ToolTip to a cell ?

2008-05-16 Thread Romain FLIEDEL
*) if there _are_ any issues left ; Actually I found a problem, I'm using several instances of the ToolTipTable and is seems that all the instance are sharing the same property labelList I fixed that by not using qooxdoo property : Replace : properties : { /** * list of labels to

[qooxdoo-devel] Accessing javascript function in Qooxdoo static member

2008-05-16 Thread kanugula
Hi experts, I am having problem invoking javascript function in Qooxdoo Static member. I get the error logout() is not a function. qx.Class.define(dialog.StatusDialog, { statics : { show : function(exc, isSuccess) {

Re: [qooxdoo-devel] Accessing javascript function in Qooxdoo static member

2008-05-16 Thread Romain FLIEDEL
kanugula a écrit : Hi experts, Hi (but i'm not an expert sorry), I am having problem invoking javascript function in Qooxdoo Static member. I get the error logout() is not a function. qx.Class.define(dialog.StatusDialog, { [...] this.logout(); //doesn't work

Re: [qooxdoo-devel] Accessing javascript function in Qooxdoo static member

2008-05-16 Thread Derrell Lipman
On Fri, May 16, 2008 at 5:33 PM, kanugula [EMAIL PROTECTED] wrote: I am having problem invoking javascript function in Qooxdoo Static member. I get the error logout() is not a function. qx.Class.define(dialog.StatusDialog, { statics : { show : function(exc,

Re: [qooxdoo-devel] Accessing javascript function in Qooxdoo static member

2008-05-16 Thread kanugula
Thank you all for your suggestions. Again, my mistake. I need to use parent.logout(). Since I am invoking it inside my html page, like Atom_1.html in Demo Browser. Since the html pages in Demo browser runs in IFrame, they need to refer the parent objects using prefix parent. My application