ICEfaces
  1. ICEfaces
  2. ICE-3908

Add ability for ice:panelPopup to center itself once when it loads, but not ever again.

    Details

    • Type: Improvement Improvement
    • Status: Closed
    • Priority: Major Major
    • Resolution: Fixed
    • Affects Version/s: 1.7.2 SP1
    • Fix Version/s: 1.8RC1, 1.8
    • Component/s: ICE-Components
    • Labels:
      None
    • Environment:
      All

      Description

      Philip has the following application level code which will implement this functionality. There is a request for it to be added to the component code base, perhaps as a new attribute on panelPopup.

       String panelPopupClientId = "...";
       JavascriptContext
        .addJavascriptCall(
        FacesContext.getCurrentInstance(),
        "var div = document.getElementById('" + panelPopupClientId + "');"
        + "if (div) {"
        + "var x = Math.round((Element.getWidth(document.body) - Element.getWidth(div)) / 2 + scrollX);"
        + "if (x < 0) x = 0;"
        + "var y = Math.round(((window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight) - Element.getHeight(div)) / 2 + scrollY);"
        + "if (y < 0) y = 0;"
        + "x = x + 'px';"
        + "y = y + 'px';"
        + "Element.setStyle(div, {position:'absolute'});"
        + "Element.setStyle(div, {left: x});"
        + "Element.setStyle(div, {top:y});"
        + "}");
       

        Activity

        Hide
        Ken Fyten added a comment -

        I think what we want to do is have it so that if both the 'autocentre' or 'autoposition' attribute is set AND the 'draggable' attribute = true, then the autocentre or autoposition is only respected until the user drags the panel, after which it behaves like any other draggable panel (no autocentre or autoposition behavior).

        I might be best if the act of dragging the panel changes the value of autocentre and autoposition to false or null, effectively turning them off after the user drags the panel.

        Show
        Ken Fyten added a comment - I think what we want to do is have it so that if both the 'autocentre' or 'autoposition' attribute is set AND the 'draggable' attribute = true, then the autocentre or autoposition is only respected until the user drags the panel, after which it behaves like any other draggable panel (no autocentre or autoposition behavior). I might be best if the act of dragging the panel changes the value of autocentre and autoposition to false or null, effectively turning them off after the user drags the panel.
        Hide
        yip.ng added a comment -

        Added attribute "positionOnLoadOnly" to control centering or positioning popup once on load only.

        Added internal flag to check when drag has been done and not render code for auto centering or auto positioning.

        Show
        yip.ng added a comment - Added attribute "positionOnLoadOnly" to control centering or positioning popup once on load only. Added internal flag to check when drag has been done and not render code for auto centering or auto positioning.

          People

          • Assignee:
            Unassigned
            Reporter:
            Tyler Johnson
          • Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

            • Created:
              Updated:
              Resolved: