Hi,
We are working with tabsets and windows, and in our initial response there is something like the code below.
If the window is not modal, the window is places behind the tabset and is not visible. A window should be always visible, not only if its modal. This issue is a big blocker for us. It would be nice to get a solution to this as soon as possible.
We are working with SmartClient_v100p_2014-10-28_Pro and the issue exists in all browsers.
here is the code:
We are working with tabsets and windows, and in our initial response there is something like the code below.
If the window is not modal, the window is places behind the tabset and is not visible. A window should be always visible, not only if its modal. This issue is a big blocker for us. It would be nice to get a solution to this as soon as possible.
We are working with SmartClient_v100p_2014-10-28_Pro and the issue exists in all browsers.
here is the code:
Code:
isc.Window.create({ "width" : "200", "height" : "200", "autoDraw" : true, "title" : "theWindow", "autoSize" : true, "autoCenter" : true, "isModal" : false, "items" : [isc.HTMLPane.create({ "contents" : "The text in window and not visible with isModal:false ", "width" : "200", "height" : "200" })] }) isc.TabSet.create({ "width" : "100%", "height" : "100%", "autoDraw" : true, "tabs" : [{ "title" : "TheTest", pane : isc.HTMLPane.create({ "contents" : "Here is a content", }) } ] });
Comment