Details

    • Type: New Feature New Feature
    • Status: Closed
    • Priority: Major Major
    • Resolution: Fixed
    • Affects Version/s: 1.0 Beta
    • Fix Version/s: 1.0 Final
    • Component/s: None
    • Labels:
      None
    • Environment:
      any

      Description

      Creation of a generic popup panel for for use on mobile devices. Place holder bug more information to come.

        Activity

        Patrick Corless created issue -
        Patrick Corless made changes -
        Field Original Value New Value
        Assignee Steve Maryka [ steve.maryka ] Patrick Corless [ patrick.corless ]
        Patrick Corless made changes -
        Fix Version/s 1.0 Final [ 10292 ]
        Hide
        Patrick Corless added a comment -

        A mobile panel popup component would display a modal dialog on top of the current page content. The content of the popup would be customizable by the developer. The default size of the popup would be slightly smaller than the window size and would allow for vertical and horizontal scrolling if the content is larger than the popup bounds. The JSF representation of the component would be as follows:

        <mobi: panelPopup rendered="#

        {myBean.showing}

        ">
        <h:outputText value="Vanilla dialog"/>
        </mobi:panelPopup>

        Show
        Patrick Corless added a comment - A mobile panel popup component would display a modal dialog on top of the current page content. The content of the popup would be customizable by the developer. The default size of the popup would be slightly smaller than the window size and would allow for vertical and horizontal scrolling if the content is larger than the popup bounds. The JSF representation of the component would be as follows: <mobi: panelPopup rendered="# {myBean.showing} "> <h:outputText value="Vanilla dialog"/> </mobi:panelPopup>
        Judy Guglielmin made changes -
        Assignee Patrick Corless [ patrick.corless ] Judy Guglielmin [ judy.guglielmin ]
        Hide
        Judy Guglielmin added a comment -

        @Property(tlddoc = "style will be rendered on a root element of this component")
        private String style;

        @Property(tlddoc = "style class will be rendered on a root element of this component")
        private String styleClass;

        @Property(tlddoc="Header text")
        private String header;

        @Property(tlddoc="visible can be used to toggle visibility on the server, rendered should not be used that way, setting rendered=false on a visible modal dialog will not remove the modality layer, visible=false must be set first (or client-side JS function called)", defaultValue="false")
        private boolean visible;

        @Property(tlddoc="Makes the dialog resizable. Should be false if width or height is auto, or resizing may hehave erratically.", defaultValue="true")
        private boolean resizable;

        @Property(defaultValue="true", tlddoc="autocenter of panel")
        private boolean autoCenter;

        @Property(tlddoc="Width of the element in pixels. Default (not specified or value <= 0) is auto. If auto, resizable should be false, or resizing may hehave erratically. If auto, IE7 may not size or position properly.", defaultValue="Integer.MIN_VALUE")
        private int width;

        @Property(tlddoc="Height of the element in pixels. Default (not specified or value <= 0) is auto. If auto, resizable should be false, or resizing may hehave erratically. If auto, IE7 may not size or position properly.", defaultValue="Integer.MIN_VALUE")
        private int height;

        @Property(tlddoc="zindex property to control overlapping with other elements", defaultValue="1000")
        private int zindex;

        @Property(tlddoc="Minimum width of a resizable dialog", defaultValue="150")
        private int minWidth;

        @Property(tlddoc="Minimum height of resizable dialog", defaultValue="0")
        private int minHeight;

        using these for now...can weed them out later, but looked at PanelPopup from compat and Dialogue from ace and found these in common.

        Show
        Judy Guglielmin added a comment - @Property(tlddoc = "style will be rendered on a root element of this component") private String style; @Property(tlddoc = "style class will be rendered on a root element of this component") private String styleClass; @Property(tlddoc="Header text") private String header; @Property(tlddoc="visible can be used to toggle visibility on the server, rendered should not be used that way, setting rendered=false on a visible modal dialog will not remove the modality layer, visible=false must be set first (or client-side JS function called)", defaultValue="false") private boolean visible; @Property(tlddoc="Makes the dialog resizable. Should be false if width or height is auto, or resizing may hehave erratically.", defaultValue="true") private boolean resizable; @Property(defaultValue="true", tlddoc="autocenter of panel") private boolean autoCenter; @Property(tlddoc="Width of the element in pixels. Default (not specified or value <= 0) is auto. If auto, resizable should be false, or resizing may hehave erratically. If auto, IE7 may not size or position properly.", defaultValue="Integer.MIN_VALUE") private int width; @Property(tlddoc="Height of the element in pixels. Default (not specified or value <= 0) is auto. If auto, resizable should be false, or resizing may hehave erratically. If auto, IE7 may not size or position properly.", defaultValue="Integer.MIN_VALUE") private int height; @Property(tlddoc="zindex property to control overlapping with other elements", defaultValue="1000") private int zindex; @Property(tlddoc="Minimum width of a resizable dialog", defaultValue="150") private int minWidth; @Property(tlddoc="Minimum height of resizable dialog", defaultValue="0") private int minHeight; using these for now...can weed them out later, but looked at PanelPopup from compat and Dialogue from ace and found these in common.
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27763 Fri Feb 10 13:27:28 MST 2012 judy.guglielmin MOBI-153 panelPopup original commit. Still working on clientSide, have some attributes to still implement and getting server and client side to synchronize visible attribute upon submit.
        Files Changed
        Commit graph ADD /icemobile/branches/RC1-comps-dev/components/component/resources/org.icefaces.component.panelpopup/panelpopup.js
        Commit graph ADD /icemobile/branches/RC1-comps-dev/components/component/src/org/icefaces/mobi/component/panelpopup/PanelPopupRenderer.java
        Commit graph MODIFY /icemobile/branches/RC1-comps-dev/components/component/src/org/icefaces/mobi/component/panelconfirmation/PanelConfirmationMeta.java
        Commit graph MODIFY /icemobile/branches/RC1-comps-dev/components/component/resources/org.icefaces.component.util/component.js
        Commit graph ADD /icemobile/branches/RC1-comps-dev/components/component/src/org/icefaces/mobi/component/panelpopup/PanelPopup.java
        Commit graph MODIFY /icemobile/branches/RC1-comps-dev/components/tests/mobitest/src/main/webapp/williamsComponents.html
        Commit graph ADD /icemobile/branches/RC1-comps-dev/components/component/resources/org.icefaces.component.panelpopup
        Commit graph ADD /icemobile/branches/RC1-comps-dev/components/component/src/org/icefaces/mobi/component/panelpopup/PanelPopupMeta.java
        Commit graph ADD /icemobile/branches/RC1-comps-dev/components/tests/mobitest/src/main/webapp/williams/panelPopup.xhtml
        Commit graph ADD /icemobile/branches/RC1-comps-dev/components/tests/mobitest/src/main/java/org/icefaces/mobile/PopupBean.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27776 Fri Feb 10 15:35:30 MST 2012 judy.guglielmin MOBI-153 see jira for specific behavior for clientSide
        Files Changed
        Commit graph MODIFY /icemobile/branches/RC1-comps-dev/components/component/resources/org.icefaces.component.panelpopup/panelpopup.js
        Commit graph MODIFY /icemobile/branches/RC1-comps-dev/components/component/src/org/icefaces/mobi/component/panelpopup/PanelPopupRenderer.java
        Commit graph MODIFY /icemobile/branches/RC1-comps-dev/components/tests/mobitest/src/main/webapp/williams/panelPopup.xhtml
        Hide
        Judy Guglielmin added a comment -

        as of rev 27776, specific behavior of this component currently is:-

        1) server-side will not render the popup unless the visible attr is true. This will cost though as each submit is a round trip to the server
        2) client-side. Will not be able to synchronize with server unless the panelPopup is enclosed in a form. Will use hidden field to synchronize. Still testing to do on this functionality. State will stay on the client and will stay open after a submit if enclosed in a form. Need further testing for placing the form with the panelPopup as this option should close each time a submit occurs on the internal form.

        Still several attributes that can be implemented for size, resizable and perhaps scrollable.

        Show
        Judy Guglielmin added a comment - as of rev 27776, specific behavior of this component currently is:- 1) server-side will not render the popup unless the visible attr is true. This will cost though as each submit is a round trip to the server 2) client-side. Will not be able to synchronize with server unless the panelPopup is enclosed in a form. Will use hidden field to synchronize. Still testing to do on this functionality. State will stay on the client and will stay open after a submit if enclosed in a form. Need further testing for placing the form with the panelPopup as this option should close each time a submit occurs on the internal form. Still several attributes that can be implemented for size, resizable and perhaps scrollable.
        Hide
        Patrick Corless added a comment -

        Judy for the initial release I would like the following attributes removed from the component. We can review them later for a future release.

        • remove minWidth, minHeight, height, width and resizeable attributes.

        Th header attribute is interesting but it doesn't give the user the flexibility of adding a close button or other components. Would it be possible to use a facet instead with little effort? If not I would be in favour of removing the functionality for now as the developer can add there own header markup.

        Show
        Patrick Corless added a comment - Judy for the initial release I would like the following attributes removed from the component. We can review them later for a future release. remove minWidth, minHeight, height, width and resizeable attributes. Th header attribute is interesting but it doesn't give the user the flexibility of adding a close button or other components. Would it be possible to use a facet instead with little effort? If not I would be in favour of removing the functionality for now as the developer can add there own header markup.
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27785 Sat Feb 11 11:52:07 MST 2012 patrick.corless MOBI-153 style rendering tweaks for panelPopup.
        Files Changed
        Commit graph MODIFY /icemobile/branches/RC1-comps-dev/components/component/resources/org.icefaces.component.panelpopup/panelpopup.js
        Commit graph MODIFY /icemobile/branches/RC1-comps-dev/components/component/src/org/icefaces/mobi/component/panelpopup/ipad/default-panelpopup.css
        Commit graph MODIFY /icemobile/branches/RC1-comps-dev/components/component/src/org/icefaces/mobi/component/panelpopup/PanelPopupRenderer.java
        Commit graph MODIFY /icemobile/branches/RC1-comps-dev/components/component/src/org/icefaces/mobi/component/panelpopup/iphone/default-panelpopup.css
        Commit graph MODIFY /icemobile/branches/RC1-comps-dev/components/component/src/org/icefaces/mobi/component/panelpopup/bberry/default-panelpopup.css
        Commit graph MODIFY /icemobile/branches/RC1-comps-dev/components/component/src/org/icefaces/mobi/component/panelpopup/android/default-panelpopup.css
        Commit graph MODIFY /icemobile/branches/RC1-comps-dev/components/component/src/org/icefaces/mobi/component/panelpopup/PanelPopup.java
        Commit graph MODIFY /icemobile/branches/RC1-comps-dev/components/component/src/org/icefaces/mobi/component/panelpopup/honeycomb/default-panelpopup.css
        Commit graph MODIFY /icemobile/branches/RC1-comps-dev/components/component/build.xml
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27787 Sat Feb 11 12:05:46 MST 2012 patrick.corless MOBI-153 updated panelPopup example with new mobi jsf component.
        Files Changed
        Commit graph MODIFY /icemobile/branches/RC1-comps-dev/samples/mobileshowcase/src/main/webapp/WEB-INF/includes/examples/layout/panelpopup-example.xhtml
        Commit graph ADD /icemobile/branches/RC1-comps-dev/samples/mobileshowcase/src/main/webapp/test.xml
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27843 Tue Feb 14 13:23:40 MST 2012 patrick.corless MOBI-153 updated panelPopup example text and example code.
        Files Changed
        Commit graph MODIFY /icemobile/branches/RC1-comps-dev/samples/mobileshowcase/src/main/webapp/WEB-INF/includes/examples/layout/panelpopup-example.xhtml
        Commit graph MODIFY /icemobile/branches/RC1-comps-dev/samples/mobileshowcase/src/main/webapp/WEB-INF/includes/examples/layout/panelpopup-desc.xhtml
        Commit graph MODIFY /icemobile/branches/RC1-comps-dev/samples/mobileshowcase/src/main/java/org/icemobile/samples/mobileshowcase/view/examples/layout/panelPopup/PanelPopupBean.java
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27863 Wed Feb 15 12:13:05 MST 2012 patrick.corless MOBI-153 changed background colour of ipad panel popup panel
        Files Changed
        Commit graph MODIFY /icemobile/branches/RC1-comps-dev/components/component/src/org/icefaces/mobi/component/panelpopup/ipad/default-panelpopup.css
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27871 Wed Feb 15 14:23:29 MST 2012 patrick.corless MOBI-153 addition of panelPopup component.
        Files Changed
        Commit graph ADD /icemobile/trunk/icemobile/components/component/src/org/icefaces/mobi/component/panelpopup/ipad/default-panelpopup.css
        Commit graph ADD /icemobile/trunk/icemobile/components/component/resources/org.icefaces.component.panelpopup
        Commit graph ADD /icemobile/trunk/icemobile/components/component/src/org/icefaces/mobi/component/panelpopup/android
        Commit graph ADD /icemobile/trunk/icemobile/components/component/src/org/icefaces/mobi/component/panelpopup/honeycomb/default-panelpopup.css
        Commit graph ADD /icemobile/trunk/icemobile/components/component/src/org/icefaces/mobi/component/panelpopup/iphone
        Commit graph ADD /icemobile/trunk/icemobile/components/component/src/org/icefaces/mobi/component/panelpopup/PanelPopup.java
        Commit graph ADD /icemobile/trunk/icemobile/components/component/src/org/icefaces/mobi/component/panelpopup/PanelPopupMeta.java
        Commit graph ADD /icemobile/trunk/icemobile/components/component/src/org/icefaces/mobi/component/panelpopup/PanelPopupRenderer.java
        Commit graph ADD /icemobile/trunk/icemobile/components/component/src/org/icefaces/mobi/component/panelpopup/android/default-panelpopup.css
        Commit graph ADD /icemobile/trunk/icemobile/components/component/src/org/icefaces/mobi/component/panelpopup/bberry/default-panelpopup.css
        Commit graph ADD /icemobile/trunk/icemobile/components/component/resources/org.icefaces.component.panelpopup/panelpopup.js
        Commit graph MODIFY /icemobile/trunk/icemobile/components/component/build.xml
        Commit graph ADD /icemobile/trunk/icemobile/components/component/src/org/icefaces/mobi/component/panelpopup/bberry
        Commit graph ADD /icemobile/trunk/icemobile/components/component/src/org/icefaces/mobi/component/panelpopup/honeycomb
        Commit graph ADD /icemobile/trunk/icemobile/components/component/src/org/icefaces/mobi/component/panelpopup/iphone/default-panelpopup.css
        Commit graph ADD /icemobile/trunk/icemobile/components/component/src/org/icefaces/mobi/component/panelpopup/ipad
        Commit graph ADD /icemobile/trunk/icemobile/components/component/src/org/icefaces/mobi/component/panelpopup
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27881 Wed Feb 15 15:20:09 MST 2012 patrick.corless MOBI-153 updated panelPopup license header.
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/components/component/src/org/icefaces/mobi/component/panelpopup/PanelPopupMeta.java
        Commit graph MODIFY /icemobile/trunk/icemobile/components/component/src/org/icefaces/mobi/component/panelpopup/PanelPopup.java
        Commit graph MODIFY /icemobile/trunk/icemobile/components/component/src/org/icefaces/mobi/component/panelpopup/PanelPopupRenderer.java
        Commit graph MODIFY /icemobile/trunk/icemobile/components/component/src/org/icefaces/mobi/component/panelpopup/android/default-panelpopup.css
        Commit graph MODIFY /icemobile/trunk/icemobile/components/component/src/org/icefaces/mobi/component/panelpopup/ipad/default-panelpopup.css
        Commit graph MODIFY /icemobile/trunk/icemobile/components/component/src/org/icefaces/mobi/component/panelpopup/bberry/default-panelpopup.css
        Commit graph MODIFY /icemobile/trunk/icemobile/components/component/resources/org.icefaces.component.panelpopup/panelpopup.js
        Commit graph MODIFY /icemobile/trunk/icemobile/components/component/src/org/icefaces/mobi/component/panelpopup/iphone/default-panelpopup.css
        Commit graph MODIFY /icemobile/trunk/icemobile/components/component/src/org/icefaces/mobi/component/panelpopup/honeycomb/default-panelpopup.css
        Hide
        Judy Guglielmin added a comment - - edited

        trying to keep this in line with our ace component library. most panels have a header or title attribute which allows the user to name a panel without having to define styling. Only tabPane has a facet, so am working on implementing that, but still is has to be styled.
        Not having much luck with trying to combine the client and server side versions of this component. Note that a client side component comes in handy without round trips to server, but will require renderer to render the button to open and close the panel.
        In order to do this, I think we'll have to implement an actionListener (panelCloseListener) which will fire so we can get the client and server-side states to synchronize. For now, if you choose the header option on the client-side version, you automatically get a button to close the panelPopup.

        Show
        Judy Guglielmin added a comment - - edited trying to keep this in line with our ace component library. most panels have a header or title attribute which allows the user to name a panel without having to define styling. Only tabPane has a facet, so am working on implementing that, but still is has to be styled. Not having much luck with trying to combine the client and server side versions of this component. Note that a client side component comes in handy without round trips to server, but will require renderer to render the button to open and close the panel. In order to do this, I think we'll have to implement an actionListener (panelCloseListener) which will fire so we can get the client and server-side states to synchronize. For now, if you choose the header option on the client-side version, you automatically get a button to close the panelPopup.
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #27935 Fri Feb 17 18:24:32 MST 2012 judy.guglielmin MOBI-153 implement facet for server-side version and try to get the client-side to sync with the server-side still working on that
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/components/component/src/org/icefaces/mobi/component/panelpopup/PanelPopupMeta.java
        Commit graph MODIFY /icemobile/trunk/icemobile/components/component/src/org/icefaces/mobi/component/panelpopup/PanelPopup.java
        Commit graph MODIFY /icemobile/trunk/icemobile/components/tests/mobitest/src/main/webapp/latest/panelPopup.xhtml
        Commit graph MODIFY /icemobile/trunk/icemobile/components/tests/mobitest/src/main/webapp/latestComponents.html
        Commit graph MODIFY /icemobile/trunk/icemobile/components/component/src/org/icefaces/mobi/component/panelpopup/PanelPopupRenderer.java
        Commit graph MODIFY /icemobile/trunk/icemobile/components/tests/mobitest/src/main/webapp/latest/panelPopupClient.xhtml
        Commit graph MODIFY /icemobile/trunk/icemobile/components/component/resources/org.icefaces.component.panelpopup/panelpopup.js
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #28045 Tue Feb 28 08:02:04 MST 2012 patrick.corless MOBI-153 updated the panelPopup centering to also scroll with the container window. Also added style class passthrough for the main popup window.
        Files Changed
        Commit graph MODIFY /icemobile/trunk/icemobile/components/component/src/org/icefaces/mobi/component/panelpopup/PanelPopupMeta.java
        Commit graph MODIFY /icemobile/trunk/icemobile/components/component/src/org/icefaces/mobi/component/panelpopup/PanelPopupRenderer.java
        Commit graph MODIFY /icemobile/trunk/icemobile/components/component/src/org/icefaces/mobi/component/panelpopup/android/default-panelpopup.css
        Commit graph MODIFY /icemobile/trunk/icemobile/components/component/src/org/icefaces/mobi/component/panelpopup/ipad/default-panelpopup.css
        Commit graph MODIFY /icemobile/trunk/icemobile/components/component/src/org/icefaces/mobi/component/panelpopup/bberry/default-panelpopup.css
        Commit graph MODIFY /icemobile/trunk/icemobile/components/component/resources/org.icefaces.component.panelpopup/panelpopup.js
        Commit graph MODIFY /icemobile/trunk/icemobile/samples/mobileshowcase/src/main/java/org/icemobile/samples/mobileshowcase/view/examples/layout/panelPopup/PanelPopupBean.java
        Commit graph MODIFY /icemobile/trunk/icemobile/samples/mobileshowcase/src/main/webapp/WEB-INF/includes/examples/layout/panelpopup-example.xhtml
        Commit graph MODIFY /icemobile/trunk/icemobile/components/component/src/org/icefaces/mobi/component/panelpopup/iphone/default-panelpopup.css
        Commit graph MODIFY /icemobile/trunk/icemobile/components/component/src/org/icefaces/mobi/component/panelpopup/honeycomb/default-panelpopup.css
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #28056 Tue Feb 28 08:54:09 MST 2012 patrick.corless MOBI-12 updated showcase for new components features, MOBI-152, MOBI-153, MOBI-147, MOBI-156.
        Files Changed
        Commit graph MODIFY /icemobile/branches/icemobile-1.0.0.A/icemobile/samples/mobileshowcase/src/main/java/org/icemobile/samples/mobileshowcase/view/examples/layout/panelPopup/PanelPopupBean.java
        Commit graph MODIFY /icemobile/branches/icemobile-1.0.0.A/icemobile/samples/mediacast/src/main/java/org/icemobile/samples/mediacast/UploadServlet.java
        Commit graph MODIFY /icemobile/branches/icemobile-1.0.0.A/icemobile/samples/mediacast/src/main/java/org/icemobile/samples/mediacast/MediaController.java
        Commit graph MODIFY /icemobile/branches/icemobile-1.0.0.A/icemobile/samples/mobileshowcase/src/main/webapp/WEB-INF/includes/examples/layout/panelpopup-example.xhtml
        Commit graph MODIFY /icemobile/branches/icemobile-1.0.0.A/icemobile/samples/mobileshowcase/src/main/java/org/icemobile/samples/mobileshowcase/view/examples/input/menubutton/MenuButtonBean.java
        Commit graph MODIFY /icemobile/branches/icemobile-1.0.0.A/icemobile/samples/mobileshowcase/src/main/webapp/WEB-INF/includes/examples/input/submitnotification-example.xhtml
        Commit graph MODIFY /icemobile/branches/icemobile-1.0.0.A/icemobile/samples/mobileshowcase/src/main/webapp/WEB-INF/includes/examples/layout/panelconfirmation-example.xhtml
        Hide
        Patrick Corless added a comment -

        I've updated the panel popup JavaScript to correct center the dialog even when the window has been scrolled. This feature is also enabled by default as I feel it will be the behaviour that most mobile users will want.

        Generic centre code has been added to org.icefaces.component.util.component.js so that other components can take advantage of the method. One more interesting note is that the scroll centring code also takes advantage of "touchmove" so that scroll centring is a little more natural for touch screen scoll detection.

        Show
        Patrick Corless added a comment - I've updated the panel popup JavaScript to correct center the dialog even when the window has been scrolled. This feature is also enabled by default as I feel it will be the behaviour that most mobile users will want. Generic centre code has been added to org.icefaces.component.util.component.js so that other components can take advantage of the method. One more interesting note is that the scroll centring code also takes advantage of "touchmove" so that scroll centring is a little more natural for touch screen scoll detection.
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #28058 Tue Feb 28 09:10:16 MST 2012 patrick.corless MOBI-153 implement facet for server-side version and try to get the client-side to sync with the server-side still working on that
        Files Changed
        Commit graph MODIFY /icemobile/branches/icemobile-1.0.0.A/icemobile/components/tests/mobitest/src/main/webapp/latest/panelPopupClient.xhtml
        Commit graph MODIFY /icemobile/branches/icemobile-1.0.0.A/icemobile/components/tests/mobitest/src/main/webapp/latestComponents.html
        Commit graph MODIFY /icemobile/branches/icemobile-1.0.0.A
        Commit graph MODIFY /icemobile/branches/icemobile-1.0.0.A/icemobile/components/tests/mobitest/src/main/webapp/latest/panelPopup.xhtml
        Commit graph MODIFY /icemobile/branches/icemobile-1.0.0.A/icemobile/components/component/src/org/icefaces/mobi/component/panelpopup/PanelPopupRenderer.java
        Commit graph MODIFY /icemobile/branches/icemobile-1.0.0.A/icemobile/components/component/src/org/icefaces/mobi/component/panelpopup/PanelPopupMeta.java
        Commit graph MODIFY /icemobile/branches/icemobile-1.0.0.A/icemobile/components/component/src/org/icefaces/mobi/component/panelpopup/PanelPopup.java
        Commit graph MODIFY /icemobile/branches/icemobile-1.0.0.A/icemobile/components/component/resources/org.icefaces.component.panelpopup/panelpopup.js
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #28067 Tue Feb 28 09:17:56 MST 2012 patrick.corless MOBI-153 updated the panelPopup centering to also scroll with the container window. Also added style class passthrough for the main popup window.
        Files Changed
        Commit graph MODIFY /icemobile/branches/icemobile-1.0.0.A/icemobile/components/component/src/org/icefaces/mobi/component/panelpopup/bberry/default-panelpopup.css
        Commit graph MODIFY /icemobile/branches/icemobile-1.0.0.A/icemobile/components/component/src/org/icefaces/mobi/component/panelpopup/android/default-panelpopup.css
        Commit graph MODIFY /icemobile/branches/icemobile-1.0.0.A/icemobile/components/component/src/org/icefaces/mobi/component/panelpopup/iphone/default-panelpopup.css
        Commit graph MODIFY /icemobile/branches/icemobile-1.0.0.A/icemobile/components/component/src/org/icefaces/mobi/component/panelpopup/honeycomb/default-panelpopup.css
        Commit graph MODIFY /icemobile/branches/icemobile-1.0.0.A/icemobile/components/component/src/org/icefaces/mobi/component/panelpopup/ipad/default-panelpopup.css
        Commit graph MODIFY /icemobile/branches/icemobile-1.0.0.A
        Commit graph MODIFY /icemobile/branches/icemobile-1.0.0.A/icemobile/components/component/src/org/icefaces/mobi/component/panelpopup/PanelPopupRenderer.java
        Commit graph MODIFY /icemobile/branches/icemobile-1.0.0.A/icemobile/components/component/src/org/icefaces/mobi/component/panelpopup/PanelPopupMeta.java
        Commit graph MODIFY /icemobile/branches/icemobile-1.0.0.A/icemobile/components/component/resources/org.icefaces.component.panelpopup/panelpopup.js
        Hide
        Judy Guglielmin added a comment -

        further work should be done under new Jira number

        Show
        Judy Guglielmin added a comment - further work should be done under new Jira number
        Judy Guglielmin made changes -
        Status Open [ 1 ] Resolved [ 5 ]
        Resolution Fixed [ 1 ]
        Migration made changes -
        Status Resolved [ 5 ] Closed [ 6 ]

          People

          • Assignee:
            Judy Guglielmin
            Reporter:
            Patrick Corless
          • Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

            • Created:
              Updated:
              Resolved: