AW.UI.Label does not take coordinates from stylesheet
#l001001 {left:25px; top:50px; }
var l001001 = new AW.UI.Label;
l001001.setControlText("some text");
document.write(l001001);
The position of "some text" is always at 0px,0px.
Whereas:
var l001001 = new AW.UI.Label;
l001001.setControlText("some text");
l001001.setStyle("left","25px");
l001001.setStyle("top","50px");
document.write(l001001);
This works perfectly, but it is inconsistent with the rest of the controls. Doing some cleanup and found this as part of moving all coordinates to the stylesheet.
Running 2.5.3.
I believe this is a bug.
Myshka
December 3,