Hi,
Using any of the SC9 feature explorer examples, enter the following code
It should show the label and open a new window as well. This works fine in Chrome, FF etc, but fails in IE9.
The problem is that as the properties are added to the canvas, each is checked to see if it is a function using the isA.Function method. This method uses the object.constructor property and for the window created above, there seems to be an access issue which results in an exception. But only in IE9
We're trying to open a separate browser window with some print friendly HTML in it.
regards,
Colin.
Using any of the SC9 feature explorer examples, enter the following code
Code:
isc.Label.create({ contents: "Label Contents", winRef: window.open("","window1234", "") });
The problem is that as the properties are added to the canvas, each is checked to see if it is a function using the isA.Function method. This method uses the object.constructor property and for the window created above, there seems to be an access issue which results in an exception. But only in IE9
We're trying to open a separate browser window with some print friendly HTML in it.
regards,
Colin.
Comment