[JBoss JIRA] Created: (RF-9428) 'render' is not processed for non-rendered component
by Nick Belaevski (JIRA)
'render' is not processed for non-rendered component
----------------------------------------------------
Key: RF-9428
URL: https://jira.jboss.org/browse/RF-9428
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-a4j-core
Affects Versions: 4.0.0.Milestone3
Reporter: Nick Belaevski
Assignee: Nick Belaevski
Fix For: 4.0.0.Milestone4
Test case:
<h:form>
<h:commandLink action="#{testBean.toggle}" value="Toggle" rendered="#{testBean.rendered}">
<a4j:ajax render="timePanel" />
</h:commandLink>
</h:form>
<h:panelGroup id="timePanel">
#{testBean.time}
</h:panelGroup>
package org.richfaces.demo;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.SessionScoped;
@ManagedBean
@SessionScoped
public class TestBean {
private boolean rendered = true;
public void toggle() {
rendered = !rendered;
}
public boolean isRendered() {
return rendered;
}
public String getTime() {
return System.currentTimeMillis() + "";
}
}
Time should be updated when link is clicked, but it isn't.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 11 months
[JBoss JIRA] Created: (RF-10442) extendedDataTable: add state saving functionality
by Ilya Shaikovsky (JIRA)
extendedDataTable: add state saving functionality
-------------------------------------------------
Key: RF-10442
URL: https://issues.jboss.org/browse/RF-10442
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-tables
Affects Versions: 4.0.0.Milestone5
Reporter: Ilya Shaikovsky
Assignee: Konstantin Mishin
Fix For: 4.Future
developer should be able to store column width'es, order and so on between requests.
TO discuss: use tableState as before or maybe create set of specific attributes for every required properties set.
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 11 months
[JBoss JIRA] Created: (RF-10958) Unnecessary attributes in message component
by Jan Jamrich (JIRA)
Unnecessary attributes in message component
-------------------------------------------
Key: RF-10958
URL: https://issues.jboss.org/browse/RF-10958
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: cdk, component
Affects Versions: 4.1.0.Milestone1
Environment: RichFaces 4.1.0-SNAPSHOT r.22442
Metamer 4.1.0-SNAPSHOT r.22441
Mojarra 2.0.4-b09
Apache Tomcat 6.0.29
Java(TM) SE Runtime Environment 1.6.0_19-b04 @ Linux
Chrome 12.0.718.0 @ Linux i686
Reporter: Jan Jamrich
There are some unnecessary attributes in faces-config.xml for rich:message component, such as: rendererType, rendersChildren. childCount, children, family, facets.
These attributes doesn't occurs in rich:messages component as well.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 12 months
[JBoss JIRA] Created: (RF-11252) Editor - submitting by a4j:commandButton (MyFaces)
by Jan Papousek (JIRA)
Editor - submitting by a4j:commandButton (MyFaces)
--------------------------------------------------
Key: RF-11252
URL: https://issues.jboss.org/browse/RF-11252
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Affects Versions: 4.1.0.Milestone1
Environment: RichFaces 4.1.0-SNAPSHOT r.d0f9c11eb0dacc1444c0a3182b12567e28aef6bc
Metamer 4.1.0-SNAPSHOT r.22610
Apache MyFaces JSF-2.1 Core Impl 2.1.1
Apache Tomcat 6.0.32
OpenJDK Runtime Environment 1.6.0_22-b22 @Linux
Internet Explorer 8.0 @ Win32
RichFaces 4.1.0-SNAPSHOT r.d0f9c11eb0dacc1444c0a3182b12567e28aef6bc
Metamer 4.1.0-SNAPSHOT r.22610
Apache MyFaces JSF-2.1 Core Impl 2.1.1
Apache Tomcat 6.0.32
OpenJDK Runtime Environment 1.6.0_22-b22 @Linux
Firefox 5.0 @ Linux x86_64
Reporter: Jan Papousek
When the rich:editor is submitted by a4j:commandButton which renders an output area, the output area stays empty. This can be reproduced in Metamer - faces/components/richEditor/simple.xhtml.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 12 months
[JBoss JIRA] Created: (RF-10230) New component tracker for 4.X
by Jay Balunas (JIRA)
New component tracker for 4.X
-----------------------------
Key: RF-10230
URL: https://issues.jboss.org/browse/RF-10230
Project: RichFaces
Issue Type: Feature Request
Security Level: Public (Everyone can see)
Components: component
Reporter: Jay Balunas
This is an umbrella jira that can be used to link, and track to new component requests and plans for releases in the 4.X series.
The complete process for handling new component requests, and discussions can be found here <LINK>
When creating a new component jira please link here, or create as a sub-task of this jira.
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years