Details
-
Type: Bug
-
Status: Closed
-
Priority: Major
-
Resolution: Fixed
-
Affects Version/s: 2.0-Alpha1
-
Fix Version/s: 2.0-Alpha1, 2.0.0
-
Component/s: Framework
-
Labels:None
-
Environment:jsf2.0, ICEfaces2.0, Compat
Description
NPE for finding paneltooltip in dom tree.
Problem was in com.icesoft.faces.util CoreUtils, method addPanelTooltip. Looking up UIComponent panelTooltip was done before using:-
UIComponent panelTooltip = facesContext.getViewRoot().findComponent(panelTooltipId);
BUt....this isn't feasible since it has different syntax. Had to change it to
UIComponent panelTooltip = CoreComponentUtils.findComponent(panelTooltipId, uiComponent);
(old method from D2DViewHandler findComponent(...)
Problem was in com.icesoft.faces.util CoreUtils, method addPanelTooltip. Looking up UIComponent panelTooltip was done before using:-
UIComponent panelTooltip = facesContext.getViewRoot().findComponent(panelTooltipId);
BUt....this isn't feasible since it has different syntax. Had to change it to
UIComponent panelTooltip = CoreComponentUtils.findComponent(panelTooltipId, uiComponent);
(old method from D2DViewHandler findComponent(...)
Issue Links
- depends on
-
ICE-4458 create component-showcase sample for compat version of ICEfaces-2
- Closed
Activity
Repository | Revision | Date | User | Message |
ICEsoft Public SVN Repository | #19429 | Thu Oct 15 14:50:09 MDT 2009 | judy.guglielmin | |
Files Changed | ||||
MODIFY
/icefaces/scratchpads/glimmer/compat/core/src/main/java/com/icesoft/faces/util/CoreUtils.java
|
Judy Guglielmin
created issue -
Judy Guglielmin
made changes -
Field | Original Value | New Value |
---|---|---|
Salesforce Case | [] | |
Fix Version/s | 2.0 [ 10032 ] |
Judy Guglielmin
made changes -
Status | Open [ 1 ] | Resolved [ 5 ] |
Resolution | Fixed [ 1 ] |
Judy Guglielmin
made changes -
Ken Fyten
made changes -
Fix Version/s | 2.0-Alpha1 [ 10213 ] | |
Fix Version/s | 2.0-Beta [ 10032 ] | |
Affects Version/s | 2.0-Alpha1 [ 10213 ] | |
Affects Version/s | 2.0-Beta [ 10032 ] |
Ken Fyten
made changes -
Fix Version/s | 2.0.0 [ 10230 ] |
Ken Fyten
made changes -
Status | Resolved [ 5 ] | Closed [ 6 ] |
fixed CoreUtils to lookup panelTooltip