http://svn.openlaszlo.org/openlaszlo/trunk/lps/components/lz/checkbox.lzx
The text element within the checkbox uses a fixed position of x="16".
But looking at how little code the checkbox component is, just create
your own version of it based on that code.
Or just do this dirty and quick solution:
<checkbox>
<handler name="oninit">
this._title.setAttribute("x", 0);
this.cb.setAttribute("x", this._title.width + 10);
</handler>
</checkbox>
- Raju
