Modal mask opacity does not seem to take effect in IE8 - I've set it to 75 and it still looks like its in 50 - compared to the opacity in firefox, 75 is much darker.
Code:
isc.IButton.create({ ID: "touchButton", width: 120, title: "Touch This" }); isc.Label.create({ left: 150, height: 20, contents: "<a href='http://www.google.com' target='_blank'>Open Google</a>" }); isc.IButton.create({ title: "Show Window", top: 35, left: 75, click : function () { touchButton.setTitle("Can't Touch This"); modalWindow.show(); } }); isc.Window.create({ ID: "modalWindow", title: "Modal Window", autoSize:true, autoCenter: true, isModal: true, showModalMask: true,modalMaskOpacity:75, autoDraw: false, closeClick : function () { touchButton.setTitle('Touch This'); this.Super("closeClick", arguments)}, items: [ isc.DynamicForm.create({ autoDraw: false, height: 48, padding:4, fields: [ {name: "field1", type: "select", valueMap: ["foo", "bar"]}, {name: "field2", type: "date"}, {type: "button", title: "Done", click: "modalWindow.hide();touchButton.setTitle('Touch This')" } ] }) ] });
Comment