Details
Description
<icecore:push group="chat" />
would add the current view to the "chat" group.
Activity
Ted Goddard
created issue -
Ted Goddard
made changes -
Field | Original Value | New Value |
---|---|---|
Assignee | Jack van Ooststroom [ jack.van.ooststroom ] |
Ted Goddard
made changes -
Salesforce Case | [] | |
Fix Version/s | 2.1 [ 10241 ] |
Jack Van Ooststroom
made changes -
Status | Open [ 1 ] | In Progress [ 3 ] |
Repository | Revision | Date | User | Message |
ICEsoft Public SVN Repository | #25053 | Tue Jul 19 11:26:56 MDT 2011 | jack.van.ooststroom | Fixed JIRA |
Files Changed | ||||
ADD
/icefaces2/trunk/icefaces/core/src/main/java/org/icefaces/impl/component/Push.java
MODIFY /icefaces2/trunk/icefaces/core/src/main/resources/META-INF/faces-config.xml ADD /icefaces2/trunk/icefaces/core/src/main/java/org/icefaces/impl/component MODIFY /icefaces2/trunk/icefaces/core/src/main/resources/META-INF/core.taglib.xml MODIFY /icefaces2/trunk/icefaces/core/src/main/java/org/icefaces/application/PushRenderer.java |
Jack Van Ooststroom
made changes -
Status | In Progress [ 3 ] | Resolved [ 5 ] |
Resolution | Fixed [ 1 ] |
Ken Fyten
made changes -
Fix Version/s | 2.1-Beta [ 10291 ] |
Ken Fyten
made changes -
Status | Resolved [ 5 ] | Closed [ 6 ] |
Repository | Revision | Date | User | Message |
ICEsoft Public SVN Repository | #32336 | Fri Nov 23 13:08:44 MST 2012 | ted.goddard | use encodeBegin for strict API compliance and support inside containers that do not call encodeAll ( |
Files Changed | ||||
MODIFY
/icefaces3/trunk/icefaces/core/src/main/java/org/icefaces/impl/component/Push.java
|
The <icecore:push group="groupName" /> component has now been added. It's considered a Core component and resides in the org.icefaces.impl.component package. Both the Core's core.taglib.xml and faces-config.xml have been updated. The group attribute is mandatory. Multiple occurrences of this component within a view can be used to add the current view to multiple groups. Removal of expired views from the group currently relies on the automatic clean-up of the groups themselves.
An example of this component's usage:
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:icecore="http://www.icefaces.org/icefaces/core">
<f:view contentType="text/html">
<h:body>
<icecore:push group="group1" />
<icecore:push group="group2" />
</h:body>
</f:view>
</html>
Marking this one as FIXED.