Hi Thorsten,

these are plenty of errors. I thought we had resolved most of the 
application layout issues already. Let's give it a second try. Hopefully 
these issues will resolved from ground up in 0.8.
> Hi Sebatian and others, here are a plenty of problems I have with
> applications designed for running in a div inside normal html
> (qx.ui.basic.Inline). You can follow me, if you click the links and check
> out what I mean. I’m really frustrated :-(
>
> 1. Startup-Errors (IE and FF)
>
> I made a build from skeleton, this was not running out of the box. I found
> out, that my app runs, if I change the optimizing to:
> APPLICATION_OPTIMIZE_STRINGS = false
> Please use FF and check out the un-optimized version running:
> http://www.event-4all.org/73_not_optimized/index.html
> [use qooxdoo:qooxdoo as username:password]
> Now compare to the optimized version:
> http://www.event-4all.org/73_optimized/
> I get 3 Errors in firebug in this case. I tryed another application (also
> designed to run inside HTML-Page), with same result. If I optimize the
> strings, then the app won’t start.
>   
I have not seen this kind of error yet. Could you send me a small demo, 
which reproduces this error?

> 2. Strange behaviour with select table rows (FF and IE)
>
> Firefox
> First don’t touch the scrollbars. Please try to select a row in Firefox. Row
> and cell is selected correct. Perform a doubleclick: the correct dataset is
> loaded in a popup window.
> Now scroll the browser-scrollbar a little bit down. If you don’t have any
> scrollbar, please resize your window. A single click selects the row and
> cell correct. But the doubleclick brings up the wrong dataset.
> To find out the row I use this:
> table.addEventListener("dblclick", function(e) {
> var x = e.getClientX();
>       var y = e.getClientY();
>       var paneScroller = this.getPaneScroller(0);
>       var row = paneScroller._getRowForPagePos(x, y);
> …
> });
>   
This one is easy :-) You have to use either "getPageX/Y" instead of 
ClientX/Y or listen for the table's "cellclick" event.

> IE
> After Login, first time the application will not start, see point 3!
> Reload the page!
> - The thin line, which separetes the columns, is not at the correct place.
> - The cell indicator is not matching the size of the cell. I use
> table.setRowHeight(18); table.getPaneScroller(0).getHeader().setHeight(18);
> because the default row hight seems to have changed from 0.7.2 to 0.7.3.
> (why?)
> - Doubleclick in a row opens the popup window and loads the data, but it
> seems I do not have the focus. Nothing is possible from this point (may be
> it’s coused by the way where I open and fill the window, but it is working
> in FF!)
> - Selection of row is wrong, if I scroll down browser.
>
>
> 3. „Communication“ or „Permission denied“ error (IE only while first start
> of application)
> The RPC-Call in the IE causes a permission denied problem, if the
> application is called first time. If you reload the application, this is no
> longer a problem.
> You can check this also with another application:
> http://www.event-4all.org/profil/ (restart IE before)
> Type something in the first field (uername) eg. „qooxdoo“ – „qooxdoo“ is
> already in use and you should get an answer from server after five keys, if
> the uername is available or not.
>   
In FireFox 3 I get the following error:

004353 ERROR: qx.io.remote.XmlHttpTransport[255]: Could not execute 
json: [JSON-RPC request expected; unexpected data received]: SyntaxError 
- missing ) in parenthetical at 
http://www.event-4all.org/profil/gzqooxdoo.php:107

Maybe the returned data is not valid JSON (maybe a comma too much) and 
Firefox 2 just lilently accepts it, while IE and Firefox 3 throw an error.


> 4. Field size
> Compare the fields in FF and in IE (see http://www.event-4all.org/profil/ )
> The fields in IE are higher and longer than in FF. It looks like the fields
> have a shadow in IE or they are painted twice? (It’s not because of my
> colored texfield, using normal textfields have the same effect.)
>
> Hopefully someone has time to have a view at my problems and give me some
> support.
> Btw: Ignore all other not working functionality of the website, normally it
> is password protected. I’m deep in developement, it’s not for public at this
> time.
>   

I have not looked at this issue yet.

Best Fabian

-- 
Fabian Jakobs
JavaScript Framework Developer

1&1 Internet AG
Brauerstraße 48
76135 Karlsruhe

Amtsgericht Montabaur HRB 6484

Vorstand: Henning Ahlert, Ralph Dommermuth, Matthias Ehrlich, Andreas Gauger, 
Thomas Gottschlich, Matthias Greve, Robert Hoffmann, Markus Huhn, Achim Weiss
Aufsichtsratsvorsitzender: Michael Scheeren


-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to