Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: EE-3.3.0.GA_P03, 4.1
-
Fix Version/s: 4.2.BETA, 4.2, EE-3.3.0.GA_P05
-
Component/s: ACE-Components, ICECORE-Components
-
Labels:None
-
Environment:All
-
Support Case References:Support Case #13589 - https://icesoft.my.salesforce.com/5007000001S8Loe
-
Workaround Exists:Yes
-
Workaround Description:
Description
An ace:dialog is used in an icecore:idleMonitor to be shown when the idle interval is reached. The issue is if modal=true on the ace:dialog, the modal background is rendered even without the idle interval being reached.
Sample code:
<icecore:idleMonitor interval="50" userActiveEvents="click">
<ace:dialog visible="true" modal="true"
closable="false">
<h5 id="idleMonitor" style="color: red;">Session Will Expire in 10 Seconds!</h5>
<h:commandButton value="OK"/>
</ace:dialog>
</icecore:idleMonitor>
Sample code:
<icecore:idleMonitor interval="50" userActiveEvents="click">
<ace:dialog visible="true" modal="true"
closable="false">
<h5 id="idleMonitor" style="color: red;">Session Will Expire in 10 Seconds!</h5>
<h:commandButton value="OK"/>
</ace:dialog>
</icecore:idleMonitor>
Activity
Field | Original Value | New Value |
---|---|---|
Attachment | Case13589Example.zip [ 22095 ] |
Attachment | Case13589Example.war [ 22096 ] |
Workaround Description | Workaround is to use the "ice.onUserInactivity(interval, idleCallback, activeCallback)" JS callback instead of the <icecore:idleMonitor> component. Using the JS callback allows the application to display an ace:dialog correctly via client-side JS when the idle event fires. | |
Fix Version/s | 4.2 [ 12870 ] | |
Priority | Major [ 3 ] | Minor [ 4 ] |
Workaround Exists | Yes [ 10007 ] |
Assignee | Mircea Toma [ mircea.toma ] |
Status | Open [ 1 ] | Resolved [ 5 ] |
Resolution | Fixed [ 1 ] |
Repository | Revision | Date | User | Message |
ICEsoft Public SVN Repository | #49100 | Tue Aug 09 06:42:44 MDT 2016 | mircea.toma | |
Files Changed | ||||
![]() ![]() |
Resolution | Fixed [ 1 ] | |
Status | Resolved [ 5 ] | Reopened [ 4 ] |
Fix Version/s | EE-3.3.0.GA_P05 [ 13082 ] |
Status | Reopened [ 4 ] | Resolved [ 5 ] |
Resolution | Fixed [ 1 ] |
Fix Version/s | 4.2.BETA [ 13091 ] |
Status | Resolved [ 5 ] | Closed [ 6 ] |
Attached sample source code.