Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Unable to change Label color on IE7

    Changing Label color doesn't work on IE 7:

    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
    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
Working...
X