Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Window irretrievably dragged off screen?

    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?

    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>

    #2
    keepInParentRect:true

    Comment


      #3
      Side note - I tried to set that on the Window's header, both via setAutoChildProperties, and getHeader after draw, but no luck. Needed a way for the user to drag the dialog down to see something on the screen such that the body can go off screen but the header cannot. Opted for a minimize button instead.

      Comment

      Working...
      X