Details
- 
        Type:
 Bug
            
         - 
        Status: Closed
 - 
            Priority:
 Major
                
             - 
            Resolution: Fixed
 - 
            Affects Version/s: EE-4.1.0.GA
 - 
            Component/s: ACE-Components, ICECORE-Components
 - 
            Labels:None
 - 
            Environment:ICEfaces 4
 
- 
                        Assignee Priority:P1
 - 
                        Support Case References:Support Case #13830 - https://icesoft.my.salesforce.com/5007000001cx9OR
 - 
                        Workaround Exists:Yes
 - 
                        Workaround Description:Temporary workaround would be to not use the showEffect.
 
Description
                    When using an icecore:refresh tag on a page that has an ace:tabSet, which uses a showEffect, the showEffect is fired on each refresh interval.  
Sample code:
<h:body>
<icecore:refresh interval="1"/>
<h:form id="iceForm">
<ace:tabSet id="testTabSet"
showEffect="clip">
<ace:tabPane label="Tab One">
<h:outputText value="Tab One Content"/>
</ace:tabPane>
<ace:tabPane label="Tab Two">
<h:outputText value="Tab Two Content"/>
</ace:tabPane>
<ace:tabPane label="Tab Three">
<h:outputText value="Tab Three Content"/>
</ace:tabPane>
</ace:tabSet>
</h:form>
</h:body>
Each time the refresh happens, the clip effect is fired. This issue is not seen on the ICEfaces 3 code base. This might effect other components that render animations as well.
Sample code:
<h:body>
<icecore:refresh interval="1"/>
<h:form id="iceForm">
<ace:tabSet id="testTabSet"
showEffect="clip">
<ace:tabPane label="Tab One">
<h:outputText value="Tab One Content"/>
</ace:tabPane>
<ace:tabPane label="Tab Two">
<h:outputText value="Tab Two Content"/>
</ace:tabPane>
<ace:tabPane label="Tab Three">
<h:outputText value="Tab Three Content"/>
</ace:tabPane>
</ace:tabSet>
</h:form>
</h:body>
Each time the refresh happens, the clip effect is fired. This issue is not seen on the ICEfaces 3 code base. This might effect other components that render animations as well.
Activity
| Field | Original Value | New Value | 
|---|---|---|
| Attachment | Case13830Example2.war [ 22257 ] | |
| Attachment | Case13830Example2.zip [ 22258 ] | 
| Assignee | Arturo Zambrano [ artzambrano ] | |
| Fix Version/s | 4.2 [ 12870 ] | |
| Assignee Priority | P1 [ 10010 ] | 
| Status | Open [ 1 ] | Resolved [ 5 ] | 
| Resolution | Fixed [ 1 ] | 
| Repository | Revision | Date | User | Message | 
| ICEsoft Public SVN Repository | #49172 | Thu Sep 08 13:01:55 MDT 2016 | art.zambrano |      | 
| Files Changed | ||||
            					
			 
                            MODIFY
            				/icefaces4/trunk/icefaces/ace/component/src/org/icefaces/ace/component/tabset/TabSetRenderer.java
            
             
                            MODIFY
            				/icefaces4/trunk/icefaces/ace/component/resources/icefaces.ace/tabset/tabset.js
            
             | 
| Resolution | Fixed [ 1 ] | |
| Status | Resolved [ 5 ] | Reopened [ 4 ] | 
| Status | Reopened [ 4 ] | Resolved [ 5 ] | 
| Resolution | Fixed [ 1 ] | 
| Fix Version/s | 4.2.BETA [ 13091 ] | 
| Status | Resolved [ 5 ] | Closed [ 6 ] | 

Attached test case that shows this issue.
Steps: