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.

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);
…
});

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.

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.

Thank you
Torsten

-- 
View this message in context: 
http://www.nabble.com/problems-with-qooxdoo-in-html-pages-tp15950612p15950612.html
Sent from the qooxdoo-devel mailing list archive at Nabble.com.


-------------------------------------------------------------------------
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