I'm using v9.1p_05_23_2014, and I've got a simple test case. The problem is that a Window can be dragged off-screen (i.e. canDragReposition=true) at the top or the left and I don't know how users can retrieve it from there, nor how I might prevent it from being moved up there. Your Window related examples all block this motion with what appears to be non-standard functionality added by your Feature Explorer.
What do you suggest?
What do you suggest?
Code:
<!DOCTYPE html>
<HTML><HEAD>
<title>Isolated Test</title>
<SCRIPT>var isomorphicDir="./isomorphic/";</SCRIPT>
<SCRIPT SRC=./isomorphic/system/modules/ISC_Core.js></SCRIPT>
<SCRIPT SRC=./isomorphic/system/modules/ISC_Foundation.js></SCRIPT>
<SCRIPT SRC=./isomorphic/system/modules/ISC_Containers.js></SCRIPT>
</HEAD><BODY>
<SCRIPT>
vis = isc.Window.create({});
vis.show();
</SCRIPT>
Comment