Re: [qooxdoo-devel] Multiple spaces in table row converted to one

2012-02-09 Thread FRANČEK PRIJATELJ
Hi Maybe this functionality should be part of standard String cell renderer. Because: No HTML has to be used and augmented to define the interface. The qooxdoo developer does not even have to know CSS to style the interface. I

[qooxdoo-devel] Multiple spaces in table row converted to one

2012-02-09 Thread fprijate
Hi Multiple spaces in string column in table are compressed to one. I know that this is html feature, and that we can use tag or white-space:pre CSS property. But this is on HTML level. I get data over qx.io.remote.Rpc , and there are intentional blanks in my db records. The problem sould be solv

Re: [qooxdoo-devel] Should i use setinterval() or something provided by Qooxdoo?

2012-02-09 Thread Derrell Lipman
On Thu, Feb 9, 2012 at 09:08, Phyo Arkar wrote: > Thanks a lot , i am finding qx.event.Timer a lot simpler and using it. > The advantage of using qx.util.TimerManager is that it uses only a single native timer regardless of how many user timers are started. The user timer requests are queued and

Re: [qooxdoo-devel] Should i use setinterval() or something provided by Qooxdoo?

2012-02-09 Thread Phyo Arkar
Thanks a lot , i am finding qx.event.Timer a lot simpler and using it. Yes the web framework i am using (web2py) do not support Comet natively and HTML5 Socket is still in draft , so i am not using for backward compatibility, On 2/9/12, Robert Nimax wrote: > Hi, > you can use TimerManager like t

Re: [qooxdoo-devel] backspace on readonly field (IE)

2012-02-09 Thread Fink, Andreas
Done: http://bugzilla.qooxdoo.org/show_bug.cgi?id=6119 Regards, Andreas >-Ursprüngliche Nachricht- >Von: thron7 [mailto:thomas.herchenroe...@1und1.de] >Gesendet: Mittwoch, 8. Februar 2012 14:58 >An: qooxdoo Development >Betreff: Re: [qooxdoo-devel] backspace on readonly field (IE) > > >

Re: [qooxdoo-devel] Component returned failure code: 0x80004005 (NS_ERROR_FAILURE)

2012-02-09 Thread alexandr
Thanks a lot, guys!!! Your answers were very helpfull for me ;) - Best regards, Alexandr -- View this message in context: http://qooxdoo.678.n2.nabble.com/Component-returned-failure-code-0x80004005-NS-ERROR-FAILURE-tp7265346p7268955.html Sent from the qooxdoo mailing list archive at Nabble.c

[qooxdoo-devel] Inject Keyboard events on Qooxdoo

2012-02-09 Thread A Matías Quezada
Hi all, I have a problem integrating Qooxdoo with another library than uses an iframe to display content. I need the events fired on this Iframe to be injected in Qooxdoo event system so it will fire Commands with shortcuts. I've looked at qx.event.handler.Keyboard but every method I found is pri

Re: [qooxdoo-devel] Should i use setinterval() or something provided by Qooxdoo?

2012-02-09 Thread Robert Nimax
Hi, you can use TimerManager like this: -- ... var timer = qx.util.TimerManager.getInstance(); this.__myTimerId = timer.start(this._timerCallback, 1200, this, null, 100); ... _timerCallback: function() { // Polling by XHR Request } // don´t forget to stop the timer… __stopTimer:

Re: [qooxdoo-devel] no qoox-noopt

2012-02-09 Thread thron7
On 02/09/2012 03:03 AM, Juan Fernando Jaramillo wrote: > Well, I download again, y already it have the job qxoo-noopt in the > file framework/config.json. Exactly, you can either download it from our website, or generate it in the framework folder. > But I don't understant how it work, becaus

[qooxdoo-devel] Should i use setinterval() or something provided by Qooxdoo?

2012-02-09 Thread Phyo Arkar
I want to pool status checking for a process via jsonRPC . should i use setinterval or which timer class provided by qooxdoo ? i saw TimeManager and a event.Timer i don't know what to use. Thanks. -- Virtualization & Clou