It seems to me I found a fix for ff3, at least for the table row selection
problem.
Could someone evaluate this? May be this is a suboptimal browser check, but
it seems to work.

qx.event.type.MouseEvent:
starting at Line 236:
    getPageX : qx.core.Variant.select("qx.client",
    {
      "mshtml" : function() {
        return this.getDomEvent().clientX +
qx.bom.Viewport.getScrollLeft(window);
      },

      "default" : function() {
                // test bufix FF3
                if (qx.core.Client.getEngine() == "gecko" && 
qx.core.Client.getVersion()
>= 1.9) {
                        return this.getDomEvent().pageX - 
qx.bom.Viewport.getScrollLeft(window);
                }
                // test ende
        return this.getDomEvent().pageX;
      }
    }),

    /**
     * TODOC
     *
     * @type member
     * @return {var} TODOC
     * @signature function()
     */
    getPageY : qx.core.Variant.select("qx.client",
    {
      "mshtml" : function() {
        return this.getDomEvent().clientY +
qx.bom.Viewport.getScrollTop(window);
      },

      "default" : function() {
                // test bufix FF3
                if (qx.core.Client.getEngine() == "gecko" && 
qx.core.Client.getVersion()
>= 1.9) {
                        return this.getDomEvent().pageY - 
qx.bom.Viewport.getScrollTop(window);
                }
                // test ende
        return this.getDomEvent().pageY;
      }
    }),

The Position of the menue is still not fixed.
Cheers
Torsten



Alexander Back wrote:
> 
> Hi Thorsten,
> 
> westor wrote:
>> Hi Alex,
>> 
>> I filed the bug here http://bugzilla.qooxdoo.org/show_bug.cgi?id=1002
>> Do you think, it is possible to fix this soon, because my application is
>> productive...?
> Sorry, I can't give you any date when this bug will be fixed. Any work 
> at this bug will be reported immediately in the bug report. So stay 
> tuned ...
> 
> cheers,
>    Alex
> 
> 
> 
>> 
>> 
>> 
>> Alexander Back wrote:
>>> Hi Westor,
>>>
>>> I can confirm your problem with FF3. As you mentioned the problem only 
>>> occurs when the page is scrollable.
>>>
>>> Could you please file a bug report with a short description?
>>>
>>> Many thanks,
>>>     Alex
>>>
>>> westor wrote:
>>>> Hi, table row selction bug and other position bugs are back with
>>>> Firefox
>>>> 3.
>>>> You can check this out here:
>>>> http://www.event-4all.org/SMS/
>>>> Please login as qooxdoo:qooxdoo
>>>> Try to select a row. If your page is not scrolled down, everything
>>>> works
>>>> fine. Please scroll down and you will see, that the wrong row ist
>>>> selected.
>>>> Next issue: select a line (check the checkbox left) where a mobile
>>>> number
>>>> is
>>>> given. Click at "SMS senden". A window for SMS input should come up.
>>>> Click
>>>> at the menue bar: "Optionen". If the page is scrolled, the menue opens
>>>> at
>>>> wrong place.
>>>> All this works fine with IE 6, IE 7 and FF 2.x
>>> -------------------------------------------------------------------------
>>> Check out the new SourceForge.net Marketplace.
>>> It's the best place to buy or sell services for
>>> just about anything Open Source.
>>> http://sourceforge.net/services/buy/index.php
>>> _______________________________________________
>>> qooxdoo-devel mailing list
>>> [email protected]
>>> https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
>>>
>>>
> 
> -------------------------------------------------------------------------
> Check out the new SourceForge.net Marketplace.
> It's the best place to buy or sell services for
> just about anything Open Source.
> http://sourceforge.net/services/buy/index.php
> _______________________________________________
> qooxdoo-devel mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Position-Problem-with-scrollbars-are-back-with-FF3-tp18062777p18105322.html
Sent from the qooxdoo-devel mailing list archive at Nabble.com.


-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to