Hi Isomorphic,
is it somehow possible to show a 2nd window from a modal window? The main GUI should be blocked and both windows should be accessible.
I tried this here (v11.1p_2018-09-14).
As you can see, if you comment in the 1st isModal: true, it does not look like a window. IMHO this is a bug.
I'd expect something like this:
Blama
is it somehow possible to show a 2nd window from a modal window? The main GUI should be blocked and both windows should be accessible.
I tried this here (v11.1p_2018-09-14).
Code:
isc.Window.create({
title: "1st window",
// isModal: true,
width: 200,
height: 200,
items: [
isc.IButton.create({
ID: "createWindowButton",
title: "Create Window",
click: function () {
isc.Window.create({
title: "2nd window",
// isModal: true,
width: 200,
height: 200,
left: 325,
canDragReposition: true,
canDragResize: true,
items: [
isc.IButton.create({
title: "Some Button"
})
]
});
}
})
]
});
I'd expect something like this:
- 1st Window modal:true -> main GUI blocked.
- Open 2nd non-modal Window from 1st window -> both windows usable, main GUI still blocked.
Blama
Comment