Sebastian Werner schrieb:
> This is the well known font-size issue. Try to set the lineHeight and 
> fontSize using setStyleProperty to 0. This should help. Maybe we should 
> add some automatic handling of this to our new layouter. But also the 
> question would be how this would cooperate with the font property of 
> QxWidget.
>
> Sebastian
>
>   
OK, that did it:

        <!-- marker line -->
       
        <qx:terminator
            top="0" left="0"
            height="1" width="100"
            visibility="true"
            id="markerLine"
            styleProperty="lineHeight:0;fontSize:0"
            backgroundColor="0"/>

or, in javascript:

var qx_2 = markerLine = new QxTerminator();
qx_2.set({top:0,left:0,height:1,width:100,visibility:true,backgroundColor:0});
qx_2.setStyleProperty("lineHeight",0);
qx_2.setStyleProperty("fontSize",0);

I adapted PHP QxBuilder so that it translates 
styleProperty="lineHeight:0;fontSize:0" correctly (Javascript QxBuilder 
doesn't do that yet).

Now the chooser widget works in IE (7)):

http://localhost/bibliograph/QxBuilder/tests/chooser.php

You should think about making this the default behaviour of QxTerminator.

Thanks!

Christian


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
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to