Sebastian,
do you have an idea, what may be the reason for this kind of behavior? I really need this in my app. since a user should have a possibility to do all the stuff with the  keyboard. And it looks like a bug for me. Probably you do have an idea for a workaround.
Thanks in advance,
alex.d
Oh!
sorry, i thought window is qooxdoo-window and setTimeout is it's method. Now it's clear.
BUT it doesnt' work too...
:'(
alex.d
This is a standard function, present in any modern browser.

alex.d wrote:
  
Anyway:
    win1.setTimeout is not a function
what revision do you use?
    
Sorry, I meant window.setTimeout(function() { liste.focus() }, 1);


dperez wrote:
  
      
Sorry, I meant window.setTimer(function() { liste.focus() }, 1);


alex.d wrote:
    
        
Hi dperez,
window has no such method "setInterval", but if i do understand it - 
your idea was to set a timer that focuses the list every millisecond?
smth. like this:
================================
    timer = new qx.client.Timer(1);
    timer.addEventListener(qx.constant.Event.INTERVAL, function(){
       liste.focus();
    }, this);
================================
? It works, but also the first time window is opened!
...---...---...---...---...---...---...
Anyway - thx for the help..
alex.d
      
          
This trick can work:

Instead of

liste.focus();

employ this:

  window.setInterval(1, function() {
     liste.focus();
  });


alex.d wrote:
  
        
            

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to