Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.8.2-EE-GA_P02, 2.0.0
-
Fix Version/s: 2.0.1
-
Component/s: Bridge, ICE-Components
-
Labels:None
-
Environment:ICEfaces2/trunk, ICEfaces/trunk
-
ICEsoft Forum Reference:
-
Affects:Documentation (User Guide, Ref. Guide, etc.)
-
Workaround Exists:Yes
-
Workaround Description:
Description
This seems to be a regression from changes made in ICE-5652. Previously, if an application had a modal panelPopup displayed and set "rendered=false", it would remove the modality layer and the popup. Now, the modality layer is not cleared.
Activity
| Field | Original Value | New Value |
|---|---|---|
| ICEsoft Forum Reference | http://www.icefaces.org/JForum/posts/list/18289.page | |
| Salesforce Case | [] | |
| Fix Version/s | 2.0.0 [ 10230 ] | |
| Fix Version/s | 1.8.2-EE-GA_P03 [ 10251 ] | |
| Assignee Priority | P1 | |
| Assignee | Mircea Toma [ mircea.toma ] |
| Salesforce Case | [] | |
| Fix Version/s | 2.0.1 [ 10255 ] | |
| Fix Version/s | 2.0.0 [ 10230 ] | |
| Fix Version/s | 1.8.2-EE-GA_P03 [ 10251 ] |
| Repository | Revision | Date | User | Message |
| ICEsoft Public SVN Repository | #23715 | Thu Dec 23 14:49:50 MST 2010 | mircea.toma | |
| Files Changed | ||||
MODIFY
/icefaces2/trunk/icefaces/core/src/main/javascript/application.js
MODIFY
/icefaces2/trunk/icefaces/compat/components/src/main/java/com/icesoft/faces/component/panelpopup/PanelPopupRenderer.java
|
| Repository | Revision | Date | User | Message |
| ICEsoft Public SVN Repository | #23716 | Thu Dec 23 15:02:14 MST 2010 | mircea.toma | |
| Files Changed | ||||
MODIFY
/icefaces2/branches/icefaces-2.0.x-maintenance/icefaces/compat/components/src/main/java/com/icesoft/faces/component/panelpopup/PanelPopupRenderer.java
MODIFY
/icefaces2/branches/icefaces-2.0.x-maintenance/icefaces/core/src/main/javascript/application.js
|
| Status | Open [ 1 ] | Resolved [ 5 ] |
| Affects | [Documentation (User Guide, Ref. Guide, etc.)] | |
| Resolution | Fixed [ 1 ] |
| Assignee Priority | P1 |
| Status | Resolved [ 5 ] | Closed [ 6 ] |

Introduced callback registration mechanism for notifying about DOM element removal. ice.onElementRemoval(id, callback) function allows registering a callback that will be eventually executed when the element with the specified ID is removed from the DOM document.
Used this new mechanism in panel popup renderer to setup a callback for running the modal cleanup code when the popup stops being rendered.