Re: [qooxdoo-devel] Is it possible to attach a Table Cell changeValue listener?

2008-10-27 Thread Derrell Lipman
On Mon, Oct 27, 2008 at 10:49 PM, Derrell Lipman < [EMAIL PROTECTED]> wrote: > Hi. I think maybe you're looking for the "input" event. This is fired > upon each character being typed. I use this to validate that legal > characters are being entered. If not legal, I either flag it with an error

Re: [qooxdoo-devel] Is it possible to attach a Table Cell changeValue listener?

2008-10-27 Thread Derrell Lipman
On Mon, Oct 27, 2008 at 6:59 PM, Kanugula <[EMAIL PROTECTED]>wrote: > > Thanks Alexander. dataChange event is the way to go! > > Your solution worked to me partially. I want something like changeValue on > a > TextField. The moment you change the value, it should invoke the event. I > need to disa

Re: [qooxdoo-devel] Evaluating qooxdoo

2008-10-27 Thread Jim Hunter
If you are wanting to do something like the sample code on the link that you provided, it's a simple publisher/subscriber pattern and qooxdoo handles that with the message bus. Take a look at qx.event.message.Bus.dispatch and qx.event.message.Bus.subscribe and you will find what you need. I use thi

Re: [qooxdoo-devel] Evaluating qooxdoo

2008-10-27 Thread wrumsby
thron7 wrote: > > >> I still haven't quite got my head around the event system in qooxdoo. I >> understand it supports Custom Events (i.e. not simply DOM/browser >> events), but couldn't find any documentation on this when I briefly >> looked over the manual. Where should I look for a better ex

Re: [qooxdoo-devel] Is it possible to attach a Table Cell changeValue listener?

2008-10-27 Thread Kanugula
Thanks Alexander. dataChange event is the way to go! Your solution worked to me partially. I want something like changeValue on a TextField. The moment you change the value, it should invoke the event. I need to disable some buttons, if my validation fails. The dataChange event is firing, only af

Re: [qooxdoo-devel] Problem with icons in IE with SSL

2008-10-27 Thread Fink, Andreas
Great! It works perfect. Thank you very much for this fast sollution, Many thanks, Andreas Von: Alexander Back [mailto:[EMAIL PROTECTED] Gesendet: Mo 27.10.2008 15:47 An: qooxdoo Development Betreff: Re: [qooxdoo-devel] Problem with icons in IE with SSL Hi An

Re: [qooxdoo-devel] DateField feature request

2008-10-27 Thread Derrell Lipman
On Mon, Oct 27, 2008 at 1:29 PM, Ian Horst <[EMAIL PROTECTED]> wrote: > I tried to compile demo source for timechooser and get "Unknown class > referenced: timechooser.TimeChooser (in: custom.Application)", however > generate.py detected namespace timechooser (6 classes found). > > How to fix it?

Re: [qooxdoo-devel] DateField feature request

2008-10-27 Thread Ian Horst
I tried to compile demo source for timechooser and get "Unknown class referenced: timechooser.TimeChooser (in: custom.Application)", however generate.py detected namespace timechooser (6 classes found). How to fix it?

Re: [qooxdoo-devel] Firefox OpenBSD not detected

2008-10-27 Thread Jairo Souto
Can we have a local fix before 0.8.1? --Jairo Souto (38)8814-4787 Alexander Back wrote: > Hi Jairo, > > I've fixed this minor issue with Revision #16547. This fix will be part > of the upcoming 0.8.1 release. > > -> http://qooxdoo.org/about/roadmap#release_0.8.1 > > cheers, >Alex > > A

Re: [qooxdoo-devel] Problem with icons in IE with SSL

2008-10-27 Thread Alexander Back
Hi Andreas, Fink, Andreas wrote: Seems that Alexander is absolutely right with the wrong resolvement of alias. Yes, I already had some fights with this issue in IE under SSL ;-) I looked at the Media content of the displayed page and the following comes out (I picked one icon for example) U

Re: [qooxdoo-devel] Firefox OpenBSD not detected

2008-10-27 Thread Alexander Back
Sorry, too fast. Here's a corrected patch. cheers, Alex Alexander Back wrote: Hi Jairo, Jairo Souto wrote: Can we have a local fix before 0.8.1? Yes of course. I've attached a patch that should work out for you. It's a very small patch, basically you only have to add one line at the "qx.

Re: [qooxdoo-devel] Firefox OpenBSD not detected

2008-10-27 Thread Alexander Back
Hi Jairo, Jairo Souto wrote: Can we have a local fix before 0.8.1? Yes of course. I've attached a patch that should work out for you. It's a very small patch, basically you only have to add one line at the "qx.bom.client.System" class. cheers, Alex Alexander Back wrote: Hi Jairo, I'

Re: [qooxdoo-devel] Problem with icons in IE with SSL

2008-10-27 Thread Fink, Andreas
Seems that Alexander is absolutely right with the wrong resolvement of alias. I looked at the Media content of the displayed page and the following comes out (I picked one icon for example) Under Firefox with or without SSL: https://qxsrv.b-s-g.de/reform/resource/qx/icon/Nuvola/16/actions/view-pa

Re: [qooxdoo-devel] Problem with icons in IE with SSL

2008-10-27 Thread Alexander Back
Hi Andreas, Fink, Andreas wrote: > Hi, > > maybe someone can help me. I'm using 0.7.4-pre (actual checkout) and if > I open my application with SSL under IE 7 all icons are missing (see > attached screenshot). > It works perfect without SSL and under Firefox (with or without SSL). > > My certifi

Re: [qooxdoo-devel] Problem with icons in IE with SSL

2008-10-27 Thread Fink, Andreas
Seems the Problem relies to qooxdoo. I've deployed the source version of my application and it works perfect with SSL. Only the build version running on IE with SSL didn't show icons. Any ideas? -Ursprüngliche Nachricht- Von: Jason P Sage [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 24.

Re: [qooxdoo-devel] Firefox OpenBSD not detected

2008-10-27 Thread Alexander Back
Hi Jairo, I've fixed this minor issue with Revision #16547. This fix will be part of the upcoming 0.8.1 release. -> http://qooxdoo.org/about/roadmap#release_0.8.1 cheers, Alex Alexander Back wrote: > Hi Jairo, > > you're right. I filed this issue under > > http://bugzilla.qooxdoo.org/show

Re: [qooxdoo-devel] Firefox OpenBSD not detected

2008-10-27 Thread Alexander Back
Hi Jairo, you're right. I filed this issue under http://bugzilla.qooxdoo.org/show_bug.cgi?id=1516 Thanks for the report! cheers, Alex Jairo Souto wrote: > Firefox on OpenBSD is not recognized by Qooxdoo. Its Error Console > shows the following 2 logs when I browse e.g. http://api.qooxdoo.or

Re: [qooxdoo-devel] Is it possible to attach a Table Cell changeValue listener?

2008-10-27 Thread Alexander Back
Hi Kanugula, Kanugula wrote: > Hi, > > I have an editable column in a Table. I want to capture the changeValue > event whilst the cell is in focus. > > The Table's cellClick and cellDblclick are not enough to me to capture the > cell value change event. I need the cell editable textfield event c

Re: [qooxdoo-devel] Qooxdoo application in iframe

2008-10-27 Thread Alexander Back
Hi nislim, welcome to the qooxdoo project! nislim wrote: > Is it possible that a qooxdoo application doesn't run within an Iframe? Of course and running inside a HTML page is normal case, e.g. take a look at the Feedreader or API viewer applications. -> http://demo.qooxdoo.org/current/feedreade