Hi Isomorphic,
please see this modified sample (SNAPSHOT_v12.1d_2018-11-12/All).
After some scrolling and therefore firing DSRequests, the very dark modal mask behind the window gets removed.
I noticed this testing my application with 12.1d. If this is 12.1d only, which I assume, this is not urgent for me, but should be fixed before 12.1d becomes 12.1p.

Best regards
Blama
please see this modified sample (SNAPSHOT_v12.1d_2018-11-12/All).
After some scrolling and therefore firing DSRequests, the very dark modal mask behind the window gets removed.
I noticed this testing my application with 12.1d. If this is 12.1d only, which I assume, this is not urgent for me, but should be fixed before 12.1d becomes 12.1p.
Code:
isc.HStack.create({
ID: "hStack",
height: 50,
membersMargin: 10,
autoDraw: false,
members: [
isc.IButton.create({
ID: "touchButton",
width: 120,
title: "Touch This"
}),
isc.Label.create({
height: 20,
contents: "<a href='http://www.google.com' target='_blank'>Open Google</a>"
})
]
});
isc.IButton.create({
ID: "button",
autoDraw: false,
title: "Show Window",
click: function () {
touchButton.setTitle("Can't Touch This");
isc.Window.create({
ID: "modalWindow",
width: 500,
height: 500,
title: "Modal Window",
autoSize: true,
autoCenter: true,
isModal: true,
showModalMask: true,
modalMaskOpacity: 90,
closeClick: function () {
touchButton.setTitle('Touch This');
this.Super("closeClick", arguments)
},
items: [
isc.ListGrid.create({
ID: "dsListGrid",
width: 490,
height: 450,
autoFetchData: true,
dataSource: "supplyItem"
})
]
});
}
});
isc.VLayout.create({
defaultLayoutAlign: "center",
members: [hStack, button]
});
Blama
Comment