Hi all,
first of all, many thanks for this ingenious Java script Framework.
With great interest I watch the current development for mobile devices.
Keep it up!!

I think, have found a small issue in qx.ui.form.renderer.AbstractRenderer.
You can reproduce it at
http://demo.qooxdoo.org/current/demobrowser/#data~FormController.html

In combination with Firefox 4.
It does not matter if Mobile- or Desktop-Version it is rendered a Line
break behind the label, before the generated ":".

In AbstractRenderer, _createLabelText , Line 125
To prevent the Line Break, I changed the Space to Non Breakable Space, "
:" to " :"

old:
line125: var colon = name.length > 0 || item.getRequired() ? " :" : "";

new:
line125: var colon = name.length > 0 || item.getRequired() ? " :" : "";

Firefox 3.6, Chrome, IE8, IE9 is rendering without this Line Break.
Of course without knowing the wider effects, I think in general, a Non
Breakable Space would be a good solution at this position.

Regards,
Helmut Lehmeyer


------------------------------------------------------------------------------
The ultimate all-in-one performance toolkit: Intel(R) Parallel Studio XE:
Pinpoint memory and threading errors before they happen.
Find and fix more than 250 security defects in the development cycle.
Locate bottlenecks in serial and parallel code that limit performance.
http://p.sf.net/sfu/intel-dev2devfeb
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to