Hi Fabian,

thank you for your help. I have some news.
The row selection works well after changing the code as you suggested.
The problem with the cell indicator and the textfields are caused by my
document type: If I remove the xhtml doctype, than the quirks mode in IE is
used and most things are looking ok. As I've read here, I can also use a 3.2
html doctype? What is the best for now and for the future?

The hint to test with FF 3 beta was good. This test did not solve my problem
with RPC-JSON-Request but it helped to find out a must have change in
index.php in backend file. (Hi Derrell ;-) )
I analyzed the header, sent from FF 3. The header is not exact
"application/json" (like in IE and in FF 2)
it is
"application/json; charset=UTF-8"
so the statement
switch($_SERVER["CONTENT_TYPE"])
is not working correct, and every RPC-Request will fail.
This should be fixed soon.

Let's go back to my problem:
First time my application is loaded, no request is sent to server. I don't
know why, because after reload the request goes out to server. The error is
a permission denied - error. But the service script is at the same host like
the html page... - do you have another idea?

Last problem of this post was the optimization problem, I will try to build
a smaller sample... :-)

ciao
Torsten


Fabian Jakobs-2 wrote:
> 
> 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
> 
> 

-- 
View this message in context: 
http://www.nabble.com/problems-with-qooxdoo-in-html-pages-tp15950612p16001739.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