Changing Label color doesn't work on IE 7:
The following code produces a blue label on FF9, Chrome 16, and Safari 5. On IE 7.0573.13 the label remains red.
SmartClient 8.2 Pro.
thanks,
- gene
Code:
isc.DrawPane.create({
ID : "dp1",
autoDraw : true,
width:350, height:350
});
isc.DrawLabel.create({autoDraw:true, drawPane:dp1,
ID: "t1",
lineColor:"#FF0000", //Red color
left: 50,
top: 50,
contents:"Test"
});
t1.lineColor = "#0000FF"; //change the color to Blue
SmartClient 8.2 Pro.
thanks,
- gene